結果

問題 No.1935 Water Simulation
ユーザー lilictakalilictaka
提出日時 2022-05-14 15:20:01
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,123 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,032 KB
実行使用メモリ 70,192 KB
最終ジャッジ日時 2024-07-23 01:12:54
合計ジャッジ時間 2,920 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 52 ms
62,812 KB
testcase_05 AC 52 ms
67,688 KB
testcase_06 AC 52 ms
68,780 KB
testcase_07 AC 49 ms
63,056 KB
testcase_08 AC 49 ms
63,788 KB
testcase_09 AC 52 ms
67,248 KB
testcase_10 AC 52 ms
66,784 KB
testcase_11 AC 50 ms
62,500 KB
testcase_12 AC 48 ms
61,864 KB
testcase_13 AC 47 ms
61,876 KB
testcase_14 AC 48 ms
62,680 KB
testcase_15 AC 49 ms
64,568 KB
testcase_16 AC 51 ms
65,112 KB
testcase_17 AC 50 ms
62,500 KB
testcase_18 AC 47 ms
60,916 KB
testcase_19 AC 53 ms
68,884 KB
testcase_20 AC 48 ms
61,040 KB
testcase_21 AC 52 ms
64,856 KB
testcase_22 AC 50 ms
65,552 KB
testcase_23 AC 48 ms
62,596 KB
testcase_24 AC 53 ms
68,100 KB
testcase_25 AC 53 ms
68,876 KB
testcase_26 AC 48 ms
61,056 KB
testcase_27 AC 51 ms
62,400 KB
testcase_28 AC 47 ms
61,860 KB
testcase_29 AC 48 ms
61,156 KB
testcase_30 AC 48 ms
61,704 KB
testcase_31 AC 47 ms
61,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from copy import copy
from collections import defaultdict,deque
v1,v2,v3,v4,n = map(int,input().split())
volume = [v1,v2,v3,v4]
tmp = [v1,0,0,0]
dp = [-1 for _ in range((v1+1) ** 3)]
def convert(x,y,z,X,Y,Z):
    return X * Y *z + X * y + x
def ch(List):
    v1,v2,v3,v4 = List
    return convert(v1,v2,v3,volume[0]+1,volume[0]+1,volume[0]+1)
q = deque()
q.append((tmp,0))
dp[ch(tmp)] = 0
memo = []
cycle = -1
while q:
    board,t = q.popleft()
    memo.append(board)
    new = copy(board)
    co = volume[(t+1)%4] -new[(t+1) % 4]
    new[(t+1) % 4] += min(new[t%4],co)
    new[t%4] -= min(new[t%4],co)
    if dp[ch(new)] >= 0:
        cycle = dp[ch(new)]
        break
    q.append((new,t+1))
    dp[ch(new)] = dp[ch(board)] +1
doubling = [[-1] * len(memo) for _ in range(61)]
for i in range(len(memo)):
    if i == len(memo) -1:
        doubling[0][i] = cycle
    else:
        doubling[0][i] = i + 1
for k in range(60):
    for i in range(len(memo)):
        doubling[k+1][i] = doubling[k][doubling[k][i]]
now = 0
for k in range(61):
    if (n>>k) & 1:
        now = doubling[k][now]
        n-= (1<<k)
print(*memo[now])
0