結果
問題 | No.2603 Tone Correction |
ユーザー | ニックネーム |
提出日時 | 2024-01-13 01:39:36 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 711 bytes |
コンパイル時間 | 359 ms |
コンパイル使用メモリ | 82,432 KB |
実行使用メモリ | 852,240 KB |
最終ジャッジ日時 | 2024-09-28 01:01:56 |
合計ジャッジ時間 | 4,931 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 44 ms
60,288 KB |
testcase_01 | AC | 38 ms
53,504 KB |
testcase_02 | AC | 51 ms
63,232 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | MLE | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
ソースコード
n,m = map(int,input().split()) a = list(map(int,input().split())) b = list(map(int,input().split())) u = [0]*(n+1); d = [0]*(n+1); k = 300 for i,(x,y) in enumerate(zip(a,b),1): u[i] = (y-x)%m; d[i] = (x-y)%m dpu = [list(range(0,m*k,m))]+[[0]*k for i in range(n)] dpd = [list(range(0,m*k,m))]+[[0]*k for i in range(n)] for i in range(n): for j in range(1,k): dpu[i+1][j] = min(dpu[i][j]+max(u[i+1]-u[i],0),dpu[i][j-1]+u[i+1]+m-u[i]) dpd[i+1][j] = min(dpd[i][j]+max(d[i+1]-d[i],0),dpd[i][j-1]+d[i+1]+m-d[i]) dpu[i+1][0] = min(dpu[i][0]+max(u[i+1]-u[i],0),dpd[i][0]+u[i+1],dpu[i][1]) dpd[i+1][0] = min(dpd[i][0]+max(d[i+1]-d[i],0),dpu[i][0]+d[i+1],dpd[i][1]) print(min(*dpu[n],*dpd[n]))