結果

問題 No.808 Kaiten Sushi?
ユーザー tktk_snsntktk_snsn
提出日時 2021-02-06 12:00:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 788 bytes
コンパイル時間 211 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 109,596 KB
最終ジャッジ日時 2024-07-02 18:53:22
合計ジャッジ時間 6,167 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,224 KB
testcase_01 AC 35 ms
52,224 KB
testcase_02 AC 36 ms
52,096 KB
testcase_03 AC 35 ms
52,480 KB
testcase_04 AC 35 ms
51,712 KB
testcase_05 AC 35 ms
52,224 KB
testcase_06 AC 36 ms
52,224 KB
testcase_07 AC 58 ms
63,744 KB
testcase_08 AC 50 ms
64,000 KB
testcase_09 AC 51 ms
65,536 KB
testcase_10 AC 57 ms
65,664 KB
testcase_11 AC 49 ms
64,000 KB
testcase_12 AC 50 ms
64,256 KB
testcase_13 AC 53 ms
65,408 KB
testcase_14 AC 46 ms
61,824 KB
testcase_15 AC 50 ms
65,536 KB
testcase_16 AC 51 ms
65,280 KB
testcase_17 AC 41 ms
60,416 KB
testcase_18 AC 39 ms
58,624 KB
testcase_19 AC 37 ms
52,480 KB
testcase_20 AC 40 ms
58,368 KB
testcase_21 AC 38 ms
57,344 KB
testcase_22 AC 39 ms
57,728 KB
testcase_23 AC 71 ms
89,976 KB
testcase_24 AC 65 ms
84,108 KB
testcase_25 AC 63 ms
86,144 KB
testcase_26 AC 62 ms
84,224 KB
testcase_27 AC 99 ms
100,072 KB
testcase_28 AC 60 ms
80,384 KB
testcase_29 AC 92 ms
98,628 KB
testcase_30 AC 82 ms
97,920 KB
testcase_31 AC 101 ms
101,656 KB
testcase_32 AC 117 ms
108,672 KB
testcase_33 AC 87 ms
95,872 KB
testcase_34 AC 95 ms
102,016 KB
testcase_35 AC 95 ms
95,872 KB
testcase_36 AC 85 ms
96,632 KB
testcase_37 AC 35 ms
52,096 KB
testcase_38 AC 35 ms
51,968 KB
testcase_39 AC 110 ms
104,656 KB
testcase_40 AC 69 ms
81,696 KB
testcase_41 AC 71 ms
83,584 KB
testcase_42 AC 101 ms
98,944 KB
testcase_43 AC 78 ms
89,100 KB
testcase_44 AC 93 ms
99,404 KB
testcase_45 AC 78 ms
88,384 KB
testcase_46 AC 64 ms
79,096 KB
testcase_47 AC 118 ms
109,596 KB
testcase_48 AC 114 ms
109,016 KB
testcase_49 AC 118 ms
109,012 KB
testcase_50 AC 115 ms
109,068 KB
testcase_51 AC 118 ms
109,352 KB
testcase_52 AC 83 ms
96,232 KB
testcase_53 AC 105 ms
107,064 KB
testcase_54 AC 35 ms
51,968 KB
testcase_55 AC 35 ms
52,208 KB
testcase_56 AC 35 ms
52,096 KB
testcase_57 AC 67 ms
86,400 KB
testcase_58 AC 83 ms
98,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def merge(x, y):
    x.reverse()
    y.reverse()
    res = []
    while x and y:
        if x[-1] < y[-1]:
            res.append(x.pop())
        else:
            res.append(~y.pop())
    while x:
        res.append(x.pop())
    while y:
        res.append(~y.pop())
    return res


N, L = map(int, input().split())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
C = merge(A[:], B[:])

p = 0
D = [-1] * (2 * N)
for i, c in enumerate(C):
    if c >= 0:
        p += 1
    else:
        p -= 1
    D[i] = p

mx = max(D)
mn = min(D)

if mx == 0:
    ans = L * (mx - mn) + B[0]
else:
    D = [d - mn for d in D]
    loop = max(D) - 1
    walk = -1
    for c, d in zip(C, D):
        if c < 0 and d == loop:
            walk = ~c
    ans = L*loop + walk

print(ans)
0