結果

問題 No.808 Kaiten Sushi?
ユーザー titiatitia
提出日時 2019-03-22 23:10:51
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,413 bytes
コンパイル時間 130 ms
コンパイル使用メモリ 82,500 KB
実行使用メモリ 118,136 KB
最終ジャッジ日時 2024-09-19 06:34:26
合計ジャッジ時間 7,527 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,404 KB
testcase_01 AC 35 ms
52,820 KB
testcase_02 AC 36 ms
54,360 KB
testcase_03 AC 35 ms
52,824 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 35 ms
53,856 KB
testcase_07 AC 45 ms
64,148 KB
testcase_08 AC 45 ms
64,328 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 56 ms
68,756 KB
testcase_13 AC 58 ms
68,056 KB
testcase_14 AC 45 ms
62,872 KB
testcase_15 AC 58 ms
70,600 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 37 ms
53,868 KB
testcase_21 AC 37 ms
54,300 KB
testcase_22 AC 38 ms
55,096 KB
testcase_23 AC 96 ms
89,496 KB
testcase_24 AC 88 ms
87,496 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 146 ms
96,280 KB
testcase_34 AC 155 ms
96,472 KB
testcase_35 WA -
testcase_36 AC 137 ms
96,540 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 166 ms
107,616 KB
testcase_40 AC 77 ms
83,260 KB
testcase_41 WA -
testcase_42 WA -
testcase_43 AC 117 ms
89,448 KB
testcase_44 WA -
testcase_45 WA -
testcase_46 AC 97 ms
82,044 KB
testcase_47 WA -
testcase_48 AC 173 ms
112,748 KB
testcase_49 AC 181 ms
112,520 KB
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
testcase_53 WA -
testcase_54 AC 34 ms
52,460 KB
testcase_55 AC 33 ms
53,092 KB
testcase_56 AC 34 ms
52,612 KB
testcase_57 AC 83 ms
89,140 KB
testcase_58 AC 93 ms
92,756 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])


NOW=0
NOWkind=-1
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])

        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