結果

問題 No.8 N言っちゃダメゲーム
ユーザー EguyEguy
提出日時 2022-07-16 22:26:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 4,231 ms / 5,000 ms
コード長 1,357 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 233,472 KB
最終ジャッジ日時 2024-06-28 22:54:29
合計ジャッジ時間 19,938 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,224 KB
testcase_01 AC 36 ms
52,096 KB
testcase_02 AC 40 ms
52,736 KB
testcase_03 AC 2,306 ms
161,408 KB
testcase_04 AC 3,148 ms
233,472 KB
testcase_05 AC 4,231 ms
233,216 KB
testcase_06 AC 1,540 ms
129,412 KB
testcase_07 AC 1,678 ms
135,536 KB
testcase_08 AC 2,010 ms
146,304 KB
testcase_09 AC 2,070 ms
148,736 KB
testcase_10 AC 2,076 ms
155,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, math
sys.setrecursionlimit(1000000)
INF = 1 << 100
#mod = 1000000007
mod = 998244353
input = lambda: sys.stdin.readline().rstrip()
li = lambda: list(map(int, input().split()))

class RMQ:
    def __init__(self, N):
        self.size = N
        self.inf = 2**31-1
        self.tree = [self.inf] * (2*N+1)

    def query(self, l, r):
        # return minimum element in range [l, r) 
        L = l + self.size
        R = r + self.size
        ans = self.inf
        while L < R:
            if R % 2:
                R -= 1
                ans = min(ans, self.tree[R])
            if L % 2:
                ans = min(ans, self.tree[L])
                L += 1
            L //= 2; R //= 2
        return ans
    
    def update(self, i, v):
        # change A[i] to v
        idx = i + self.size
        self.tree[idx] = v
        while 1:
            idx //= 2
            if idx == 0:
                break
            a, b = self.tree[idx*2+1], self.tree[idx*2]
            self.tree[idx] = min(a, b)


def f(n, k):
    tree = RMQ(n+5)
    tree.update(n-1, 0)
    for i in range(n-1)[::-1]:
        j = min(i+k+1, n+2)
        x = tree.query(i+1, j)
        tree.update(i, x ^ 1)
        #print(i, x^1)
    if tree.query(0, 1) == 0:
        return 'Lose'
    return 'Win'

P = int(input())
for _ in range(P):
    n, k = li()
    print(f(n, k))
0