結果

問題 No.2603 Tone Correction
ユーザー ニックネームニックネーム
提出日時 2024-01-13 01:43:19
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 818 bytes
コンパイル時間 392 ms
コンパイル使用メモリ 82,220 KB
実行使用メモリ 437,792 KB
最終ジャッジ日時 2024-09-28 01:05:01
合計ジャッジ時間 39,055 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,608 KB
testcase_01 AC 37 ms
52,608 KB
testcase_02 AC 39 ms
54,016 KB
testcase_03 AC 106 ms
81,576 KB
testcase_04 AC 108 ms
81,704 KB
testcase_05 AC 109 ms
81,684 KB
testcase_06 AC 107 ms
81,696 KB
testcase_07 AC 111 ms
81,784 KB
testcase_08 AC 109 ms
81,568 KB
testcase_09 AC 108 ms
81,816 KB
testcase_10 AC 108 ms
81,804 KB
testcase_11 AC 105 ms
81,696 KB
testcase_12 AC 106 ms
81,568 KB
testcase_13 AC 1,715 ms
437,792 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 1,691 ms
437,380 KB
testcase_19 AC 1,703 ms
437,636 KB
testcase_20 WA -
testcase_21 AC 1,643 ms
437,680 KB
testcase_22 AC 1,623 ms
437,152 KB
testcase_23 WA -
testcase_24 AC 1,623 ms
437,344 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 1,623 ms
437,480 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 1,620 ms
437,344 KB
testcase_32 AC 1,637 ms
437,472 KB
testcase_33 AC 35 ms
52,512 KB
testcase_34 AC 1,299 ms
436,736 KB
testcase_35 AC 1,306 ms
436,452 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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 = 100
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):
    dpu[i+1][0] = min(dpu[i][0]+max(u[i+1]-u[i],0),dpd[i][0]+u[i+1])
    dpd[i+1][0] = min(dpd[i][0]+max(d[i+1]-d[i],0),dpu[i][0]+d[i+1])
    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])
    for j in range(k-1):
        dpu[i+1][j] = min(dpu[i+1][j],dpu[i][j+1])
        dpd[i+1][j] = min(dpd[i+1][j],dpd[i][j+1])
print(min(*dpu[n],*dpd[n]))
0