ps | |
---|---|
링크 | acmicpc.net/… |
출처 | BOJ |
문제 번호 | 5981 |
문제명 | Cow Checkers |
레벨 | 플래티넘 3 |
분류 |
게임 이론 |
시간복잡도 | O(T) |
인풋사이즈 | T<=1000 |
사용한 언어 | Python 3.11 |
제출기록 | 33376KB / 44ms |
최고기록 | 44ms |
해결날짜 | 2023/07/11 |
"""Solution code for "BOJ 5981. Cow Checkers".
- Problem link: https://www.acmicpc.net/problem/5981
- Solution link: http://www.teferi.net/ps/problems/boj/5981
Tags: [game theory]
"""
import math
import sys
PHI = (1.0 + math.sqrt(5)) / 2.0
PHI_SQ = PHI * PHI
def main():
# pylint: disable=unused-variable
M, N = [int(x) for x in sys.stdin.readline().split()]
T = int(sys.stdin.readline())
for _ in range(T):
X, Y = [int(x) for x in sys.stdin.readline().split()]
x, y = sorted((X, Y))
k = math.ceil(x / PHI)
is_win_pos = (int(k * PHI), int(k * PHI_SQ)) != (x, y)
print('Bessie' if is_win_pos else 'Farmer John')
if __name__ == '__main__':
main()