結果

問題 No.1149 色塗りゲーム
ユーザー lllllll88938494lllllll88938494
提出日時 2023-05-09 20:44:06
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 3,091 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 11,444 KB
実行使用メモリ 24,912 KB
平均クエリ数 20.92
最終ジャッジ日時 2023-08-17 10:16:19
合計ジャッジ時間 6,580 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
24,772 KB
testcase_01 AC 49 ms
24,820 KB
testcase_02 AC 49 ms
24,248 KB
testcase_03 AC 50 ms
24,912 KB
testcase_04 AC 49 ms
24,440 KB
testcase_05 AC 49 ms
24,444 KB
testcase_06 AC 49 ms
24,420 KB
testcase_07 AC 50 ms
24,784 KB
testcase_08 AC 50 ms
24,144 KB
testcase_09 AC 49 ms
24,488 KB
testcase_10 AC 52 ms
24,396 KB
testcase_11 AC 51 ms
24,568 KB
testcase_12 AC 51 ms
24,040 KB
testcase_13 AC 51 ms
24,760 KB
testcase_14 AC 51 ms
24,872 KB
testcase_15 AC 52 ms
24,652 KB
testcase_16 AC 52 ms
24,844 KB
testcase_17 AC 53 ms
24,660 KB
testcase_18 AC 55 ms
24,504 KB
testcase_19 AC 53 ms
24,664 KB
testcase_20 AC 54 ms
24,752 KB
testcase_21 AC 53 ms
24,620 KB
testcase_22 AC 53 ms
24,336 KB
testcase_23 AC 54 ms
24,500 KB
testcase_24 AC 54 ms
24,504 KB
testcase_25 AC 55 ms
24,668 KB
testcase_26 AC 55 ms
24,156 KB
testcase_27 AC 56 ms
24,704 KB
testcase_28 AC 56 ms
24,380 KB
testcase_29 AC 57 ms
24,520 KB
testcase_30 AC 96 ms
24,488 KB
testcase_31 AC 99 ms
24,812 KB
testcase_32 AC 102 ms
24,876 KB
testcase_33 AC 99 ms
24,352 KB
testcase_34 AC 102 ms
24,444 KB
testcase_35 AC 102 ms
24,696 KB
testcase_36 AC 108 ms
24,664 KB
testcase_37 AC 108 ms
24,488 KB
testcase_38 AC 103 ms
24,416 KB
testcase_39 AC 112 ms
24,160 KB
testcase_40 AC 115 ms
24,796 KB
testcase_41 AC 121 ms
24,368 KB
testcase_42 AC 123 ms
24,220 KB
testcase_43 AC 118 ms
24,532 KB
testcase_44 AC 119 ms
24,480 KB
testcase_45 AC 118 ms
24,676 KB
testcase_46 AC 121 ms
24,148 KB
testcase_47 AC 120 ms
24,652 KB
testcase_48 AC 126 ms
24,832 KB
testcase_49 AC 128 ms
24,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
g=[0]*(n+1)
for i in range(1,n+1):
    g[i] = i%3
g=[0, 1, 2, 3, 1, 4, 3, 2, 1, 4, 2, 6, 4, 1, 2, 7, 1, 4, 3, 2, 1, 4, 6, 7, 4, 1, 2, 8, 5, 4, 7, 2, 1, 8, 6, 7, 4, 1, 2, 3, 1, 4, 7, 2, 1, 8, 2, 7, 4, 1, 2, 8, 1, 4, 7, 2, 1, 4, 2, 7, 4, 1, 2, 8, 1, 4, 7, 2, 1, 8, 6, 7, 4, 1, 2, 8, 1, 4, 7, 2, 1, 8, 2, 7, 4, 1, 2, 8, 1, 4, 7, 2, 1, 8, 2, 7, 4, 1, 2, 8, 1]

f = [0]*(n)
bb=[]
while True:
    gs = 0 
    x = []
    t = 0
    for i in range(n):
        if f[i] == 0:
            t += 1
        elif f[i] == 1:
            if t > 0:
                x.append(t)
                gs^=g[t]
            x.append(0)
            t = 0
        
        if i == n-1 and t > 0:
            x.append(t)
            gs^=g[t]

            
    cnt=0
    ff=0
    for i in x:
        if i == 0:
            cnt+=1
            continue
        ff = 0
        for k in range(1,i+1):
            ts=gs
            l,r = k-1,i-k
            ts^=g[i]
            ts^=g[l]
            ts^=g[r]
            cnt += 1
            if ts == 0:
                ff = 1
                break
        if ff:
            break
            
        
    if ff == 1:
        print(1,cnt,flush=True)
        bb.append((1,cnt,'x'))
        f[cnt-1] = 1
        v=int(input())
        assert v != 2,(n,bb)
        assert v != 1,(n,bb)

        if v == 0:
            exit()
        xx,yy=map(int,input().split())
        bb.append((xx,yy,'y'))
        if xx == 0:
            exit()
        if xx == 1:
            f[yy-1] = 1
        else:
            f[yy-1] = 1
            f[yy] = 1
 
        continue
        
    cnt=0
    for i in x:
        if i <= 1:
            cnt+=1
            continue
        ff = 0
        for k in range(1,i+1):
            if k == i:
                cnt+=1
                continue
            ts=gs
            l,r = k-1,i-(k+1)
            ts^=g[i]
            ts^=g[l]
            ts^=g[r]
            cnt += 1
            if ts == 0:
                ff = 1
                break
        if ff:
            break
        
    
        
    if ff == 1:
        print(2,cnt,flush=True)
        bb.append((2,cnt,'x'))
        f[cnt-1] = 1
        f[cnt] = 1
        v=int(input())
        assert v != 2,(n,bb)
        assert v != 1,(n,bb)

        if v == 0:
            exit()
        xx,yy=map(int,input().split())
        bb.append((xx,yy,'y'))
        if xx == 1:
            f[yy-1] = 1
        else:
            f[yy-1] = 1
            f[yy] = 1

        continue
        
    cnt=0
    for i in x:
        if i == 0:
            cnt+=1
            continue
        if i>0:
            cnt+=i
            f[cnt-1] = 1
            print(1,cnt,flush=True)
            bb.append((1,cnt,'x'))
         
            v=int(input())
            assert v != 2,(n,bb)
            assert v != 1,(n,bb)
            if v == 0:
                exit()
            xx,yy=map(int,input().split())
            bb.append((xx,yy,'y'))
            if xx == 1:
                f[yy-1] = 1
            else:
                f[yy-1] = 1
                f[yy] = 1
            break
  
            
0