Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

チームレートの計算式が怪しい #16

Open
physics0523 opened this issue Dec 26, 2024 · 0 comments
Open

チームレートの計算式が怪しい #16

physics0523 opened this issue Dec 26, 2024 · 0 comments

Comments

@physics0523
Copy link

チームレートの計算式内で

def __get_win_probability(ra: float, rb: float):
    return 1 / (1 + 10 ** ((rb - ra) / 400))

が採用されていますが、これは codeforces のレーティングの底が 10 であることから来ているはずで、 AtCoder のレーティングの底は 6 なので

def __get_win_probability(ra: float, rb: float):
    return 1 / (1 + 6 ** ((rb - ra) / 400))

がより尤もらしい (現状のままだと、 1 強チームは過大評価され均等な実力のチームは過小評価される) 気がしています

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant