結果

問題 No.808 Kaiten Sushi?
ユーザー titiatitia
提出日時 2019-03-22 23:37:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 222 ms / 2,000 ms
コード長 1,630 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 82,092 KB
実行使用メモリ 117,424 KB
最終ジャッジ日時 2024-09-19 07:05:12
合計ジャッジ時間 7,676 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,596 KB
testcase_01 AC 38 ms
52,572 KB
testcase_02 AC 38 ms
52,672 KB
testcase_03 AC 35 ms
53,072 KB
testcase_04 AC 35 ms
53,212 KB
testcase_05 AC 37 ms
52,752 KB
testcase_06 AC 35 ms
52,556 KB
testcase_07 AC 47 ms
64,732 KB
testcase_08 AC 48 ms
64,476 KB
testcase_09 AC 64 ms
72,360 KB
testcase_10 AC 57 ms
68,796 KB
testcase_11 AC 55 ms
66,388 KB
testcase_12 AC 59 ms
69,304 KB
testcase_13 AC 58 ms
68,532 KB
testcase_14 AC 46 ms
62,188 KB
testcase_15 AC 62 ms
71,428 KB
testcase_16 AC 58 ms
69,284 KB
testcase_17 AC 49 ms
63,580 KB
testcase_18 AC 38 ms
54,932 KB
testcase_19 AC 37 ms
53,600 KB
testcase_20 AC 39 ms
55,056 KB
testcase_21 AC 38 ms
54,208 KB
testcase_22 AC 38 ms
53,948 KB
testcase_23 AC 97 ms
89,664 KB
testcase_24 AC 89 ms
87,704 KB
testcase_25 AC 97 ms
90,064 KB
testcase_26 AC 96 ms
90,056 KB
testcase_27 AC 204 ms
113,492 KB
testcase_28 AC 105 ms
85,616 KB
testcase_29 AC 193 ms
111,496 KB
testcase_30 AC 145 ms
97,064 KB
testcase_31 AC 206 ms
115,824 KB
testcase_32 AC 222 ms
117,424 KB
testcase_33 AC 144 ms
96,580 KB
testcase_34 AC 156 ms
96,636 KB
testcase_35 AC 176 ms
104,436 KB
testcase_36 AC 144 ms
96,348 KB
testcase_37 AC 35 ms
53,236 KB
testcase_38 AC 36 ms
52,772 KB
testcase_39 AC 175 ms
107,668 KB
testcase_40 AC 84 ms
83,312 KB
testcase_41 AC 108 ms
84,428 KB
testcase_42 AC 158 ms
96,596 KB
testcase_43 AC 122 ms
89,792 KB
testcase_44 AC 137 ms
93,704 KB
testcase_45 AC 122 ms
89,732 KB
testcase_46 AC 101 ms
82,472 KB
testcase_47 AC 182 ms
112,960 KB
testcase_48 AC 189 ms
112,956 KB
testcase_49 AC 187 ms
113,088 KB
testcase_50 AC 183 ms
113,020 KB
testcase_51 AC 183 ms
112,936 KB
testcase_52 AC 121 ms
94,908 KB
testcase_53 AC 155 ms
111,096 KB
testcase_54 AC 35 ms
52,736 KB
testcase_55 AC 35 ms
52,692 KB
testcase_56 AC 35 ms
53,808 KB
testcase_57 AC 88 ms
89,172 KB
testcase_58 AC 97 ms
92,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N,L=map(int,input().split())
X=list(map(int,input().split()))
Y=list(map(int,input().split()))

X2=[[x,1] for x in X]
Y2=[[y,2] for y in Y]

ALL=X2+Y2
ALL.sort()

ALL_C=[ALL[0]+[1]]

for i in range(1,2*N):
    if ALL[i][1]==ALL[i-1][1]:
        ALL_C[-1][2]+=1
    else:
        ALL_C.append(ALL[i]+[1])

NOWkind=2
if NOWkind==ALL_C[0][1]==ALL_C[-1][1]:
    ALL_C[-1][2]+=ALL_C[0][2]
    ALL_C=ALL_C[1:]


NOW=0
EAT=0
ANS=0
LEN=len(ALL_C)
i=0

while EAT<2*N:
    #print(ALL_C,NOW,NOWkind,ANS)
    if i==LEN:
        i=0

        for j in range(LEN):
            if ALL_C[j][2]==0:
                continue
            else:
                ALL_C2=[ALL_C[j]]
                break

        for k in range(j+1,LEN):
            if ALL_C[k][2]==0:
                continue
            if ALL_C[k][1]==ALL_C2[-1][1]:
                ALL_C2[-1][2]+=ALL_C[k][2]
            else:
                ALL_C2.append(ALL_C[k])

        if NOWkind==ALL_C2[0][1]==ALL_C2[-1][1]:
            ALL_C2[-1][2]+=ALL_C2[0][2]
            ALL_C2=ALL_C2[1:]

        ALL_C=ALL_C2
        LEN=len(ALL_C)
            

        
    dist,kind,num=ALL_C[i]
    if num==0 or kind==NOWkind:
        i+=1
    else:
        if NOW<dist:
            ANS+=dist-NOW
            ALL_C[i][2]-=1
            EAT+=1
            NOW=dist
            NOWkind=kind
        else:
            ANS+=dist+(L-NOW)
            ALL_C[i][2]-=1
            EAT+=1
            NOW=dist
            NOWkind=kind
        i+=1

print(ANS)
            
    
    
0