結果

問題 No.2165 Let's Play Nim!
ユーザー H3PO4H3PO4
提出日時 2022-12-22 22:22:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 404 ms / 2,000 ms
コード長 1,586 bytes
コンパイル時間 218 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 95,360 KB
平均クエリ数 884.90
最終ジャッジ日時 2024-04-29 03:54:12
合計ジャッジ時間 20,398 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
69,088 KB
testcase_01 AC 349 ms
94,408 KB
testcase_02 AC 363 ms
95,360 KB
testcase_03 AC 288 ms
94,408 KB
testcase_04 AC 73 ms
75,080 KB
testcase_05 AC 111 ms
83,144 KB
testcase_06 AC 111 ms
83,144 KB
testcase_07 AC 101 ms
80,328 KB
testcase_08 AC 296 ms
93,904 KB
testcase_09 AC 84 ms
76,880 KB
testcase_10 AC 139 ms
87,888 KB
testcase_11 AC 360 ms
95,200 KB
testcase_12 AC 329 ms
95,072 KB
testcase_13 AC 73 ms
75,336 KB
testcase_14 AC 105 ms
81,992 KB
testcase_15 AC 80 ms
76,872 KB
testcase_16 AC 328 ms
94,664 KB
testcase_17 AC 247 ms
94,280 KB
testcase_18 AC 404 ms
94,932 KB
testcase_19 AC 72 ms
75,600 KB
testcase_20 AC 98 ms
80,464 KB
testcase_21 AC 225 ms
94,040 KB
testcase_22 AC 189 ms
94,032 KB
testcase_23 AC 169 ms
93,272 KB
testcase_24 AC 161 ms
93,016 KB
testcase_25 AC 261 ms
94,424 KB
testcase_26 AC 368 ms
94,772 KB
testcase_27 AC 209 ms
93,768 KB
testcase_28 AC 257 ms
94,152 KB
testcase_29 AC 66 ms
69,088 KB
testcase_30 AC 64 ms
68,696 KB
testcase_31 AC 63 ms
68,576 KB
testcase_32 AC 242 ms
94,432 KB
evil_2_big_1.txt AC 1,731 ms
98,632 KB
evil_2_big_2.txt AC 1,958 ms
103,752 KB
evil_2_big_3.txt AC 1,702 ms
98,760 KB
evil_big_1.txt AC 1,922 ms
103,640 KB
evil_big_2.txt AC 1,983 ms
102,616 KB
evil_big_3.txt AC 1,994 ms
103,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class Player:
    MAX_BIT = 17

    def __init__(self, N: int, A: list):
        self.N = N
        self.A = A
        self.x = self.calc_initial_xor(A)
        self.bits_set = self.calc_initial_bits(A)

    @staticmethod
    def calc_initial_xor(A: list):
        x = 0
        for a in A:
            x ^= a
        return x

    @classmethod
    def calc_initial_bits(cls, A: list):
        st = [set() for _ in range(cls.MAX_BIT)]
        for i, a in enumerate(A):
            for n in range(cls.MAX_BIT):
                if (a >> n) & 1:
                    st[n].add(i)
        return st

    def output(self):
        for n in range(self.MAX_BIT - 1, -1, -1):
            if (self.x >> n) & 1:
                i = self.bits_set[n].pop()
                k = self.A[i] - (self.A[i] ^ self.x)
                self.update(i + 1, k)
                assert self.x == 0
                return i + 1, k

    def update(self, i: int, k: int):
        i -= 1
        self.x ^= self.A[i]
        self.A[i] -= k
        self.x ^= self.A[i]
        for n in range(self.MAX_BIT):
            if i in self.bits_set[n]:
                self.bits_set[n].remove(i)
            if (self.A[i] >> n) & 1:
                self.bits_set[n].add(i)


N = int(input())
A = list(map(int, input().split()))

player = Player(N, A)
t = 0 if player.x == 0 else 1
"""先攻:t=1, 後攻:t=0"""

print(t, flush=True)

while True:
    if t:
        print(*player.output(), flush=True)
    else:
        player.update(*map(int, input().split()))
    ret = int(input())
    if ret != 0:
        exit()
    t = 1 - t
0