結果

問題 No.936 Are
ユーザー vwxyzvwxyz
提出日時 2024-04-25 04:25:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,552 ms / 3,000 ms
コード長 2,830 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 79,568 KB
最終ジャッジ日時 2024-11-07 14:24:10
合計ジャッジ時間 30,128 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 155 ms
77,396 KB
testcase_01 AC 2,552 ms
79,196 KB
testcase_02 AC 2,435 ms
79,284 KB
testcase_03 AC 201 ms
77,552 KB
testcase_04 AC 208 ms
77,424 KB
testcase_05 AC 189 ms
77,440 KB
testcase_06 AC 223 ms
78,296 KB
testcase_07 AC 182 ms
77,424 KB
testcase_08 AC 192 ms
77,908 KB
testcase_09 AC 220 ms
78,424 KB
testcase_10 AC 204 ms
78,420 KB
testcase_11 AC 200 ms
77,824 KB
testcase_12 AC 156 ms
77,312 KB
testcase_13 AC 847 ms
78,548 KB
testcase_14 AC 2,030 ms
79,568 KB
testcase_15 AC 948 ms
78,324 KB
testcase_16 AC 1,577 ms
78,596 KB
testcase_17 AC 1,390 ms
78,680 KB
testcase_18 AC 716 ms
77,436 KB
testcase_19 AC 2,454 ms
78,580 KB
testcase_20 AC 2,464 ms
78,840 KB
testcase_21 AC 2,261 ms
78,964 KB
testcase_22 AC 1,383 ms
78,552 KB
testcase_23 AC 2,542 ms
78,972 KB
testcase_24 AC 2,478 ms
79,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

attack=[]
lose=[]
for L1 in range(5):
    for R1 in range(5):
        for L2 in range(5):
            for R2 in range(5):
                attack.append([])
                if L1 and L2:
                    attack[-1].append(((L1+L2)%5,R2))
                if L1 and R2:
                    attack[-1].append((L2,(L1+R2)%5))
                if R1 and L2:
                    attack[-1].append(((R1+L2)%5,R2))
                if R1 and R2:
                    attack[-1].append((L2,(R1+R2)%5))

                if L2 and R2:
                    lose.append(False)
                else:
                    s=L2+R2
                    lose.append((-s)%5 in (L1,R1))

split=[]
for L in range(5):
    for R in range(5):
        split.append([])
        for l in range(5):
            for r in range(5):
                if (l,r)==(0,0):
                    continue
                if (l+r==L+R or l+r==(L+R)%5) and {l,r}!={L,R}:
                    split[-1].append((l,r))

N,K=map(int,input().split())
mod=10**9+7
def idx(L1,R1,L2,R2):
    return L1*125+R1*25+L2*5+R2
dp=[0]*625
for cnt in range(K,-1,-1):
    prev=dp
    dp=[0]*625
    for L1 in range(5):
        for R1 in range(5):
            for L2 in range(5):
                for R2 in range(5):
                    if (L1,R1)==(0,0):
                        dp[idx(L1,R1,L2,R2)]=0
                    elif (L2,R2)==(0,0):
                        dp[idx(L1,R1,L2,R2)]=1
                    else:
                        if cnt%2!=N%2:
                            if not (0,0) in attack[idx(L2,R2,L1,R1)]:
                                not_lose=False
                                for L,R in split[L2*5+R2]:
                                    not_lose|=not lose[idx(L1,R1,L,R)]
                                for L,R in attack[idx(L2,R2,L1,R1)]:
                                    not_lose|=not lose[idx(L,R,L2,R2)]

                                for L,R in split[L2*5+R2]:
                                    if not_lose and lose[idx(L1,R1,L,R)]:
                                        continue
                                    dp[idx(L1,R1,L2,R2)]+=prev[idx(L1,R1,L,R)]
                                for L,R in attack[idx(L2,R2,L1,R1)]:
                                    if not_lose and lose[idx(L,R,L2,R2)]:
                                        continue
                                    dp[idx(L1,R1,L2,R2)]+=prev[idx(L,R,L2,R2)]
                        else:
                            for L,R in split[L1*5+R1]:
                                dp[idx(L1,R1,L2,R2)]+=prev[idx(L,R,L2,R2)]
                            for L,R in attack[idx(L1,R1,L2,R2)]:
                                dp[idx(L1,R1,L2,R2)]+=prev[idx(L1,R1,L,R)]
                        dp[idx(L1,R1,L2,R2)]%=mod
L1,R1,L2,R2=map(int,input().split())
ans=dp[idx(L1,R1,L2,R2)]
print(ans)
0