結果

問題 No.808 Kaiten Sushi?
ユーザー titiatitia
提出日時 2019-03-22 23:14:53
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,537 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 117,376 KB
最終ジャッジ日時 2024-09-19 06:38:39
合計ジャッジ時間 7,813 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,404 KB
testcase_01 AC 37 ms
51,968 KB
testcase_02 AC 37 ms
52,480 KB
testcase_03 AC 36 ms
52,608 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 35 ms
52,480 KB
testcase_07 AC 46 ms
63,360 KB
testcase_08 AC 47 ms
63,488 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 59 ms
68,352 KB
testcase_13 AC 58 ms
67,712 KB
testcase_14 AC 46 ms
62,508 KB
testcase_15 AC 62 ms
70,656 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 39 ms
54,144 KB
testcase_21 AC 37 ms
53,120 KB
testcase_22 AC 40 ms
53,632 KB
testcase_23 AC 96 ms
89,432 KB
testcase_24 AC 89 ms
87,832 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 223 ms
117,376 KB
testcase_33 AC 146 ms
96,176 KB
testcase_34 AC 160 ms
96,352 KB
testcase_35 AC 185 ms
104,204 KB
testcase_36 AC 141 ms
96,232 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 173 ms
107,448 KB
testcase_40 AC 96 ms
83,256 KB
testcase_41 AC 107 ms
84,352 KB
testcase_42 AC 167 ms
96,616 KB
testcase_43 AC 122 ms
89,728 KB
testcase_44 AC 136 ms
93,864 KB
testcase_45 AC 122 ms
90,112 KB
testcase_46 AC 106 ms
82,208 KB
testcase_47 AC 184 ms
112,420 KB
testcase_48 AC 187 ms
112,468 KB
testcase_49 AC 185 ms
112,544 KB
testcase_50 AC 185 ms
112,476 KB
testcase_51 AC 184 ms
112,460 KB
testcase_52 WA -
testcase_53 WA -
testcase_54 AC 36 ms
52,072 KB
testcase_55 AC 36 ms
52,224 KB
testcase_56 AC 35 ms
51,968 KB
testcase_57 AC 86 ms
89,600 KB
testcase_58 AC 97 ms
92,288 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])

        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