結果

問題 No.808 Kaiten Sushi?
ユーザー titiatitia
提出日時 2019-03-22 23:39:16
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 546 ms / 2,000 ms
コード長 1,630 bytes
コンパイル時間 86 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 47,212 KB
最終ジャッジ日時 2024-09-19 07:05:36
合計ジャッジ時間 12,824 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
11,008 KB
testcase_01 AC 32 ms
11,008 KB
testcase_02 AC 30 ms
11,008 KB
testcase_03 AC 29 ms
11,008 KB
testcase_04 AC 28 ms
11,008 KB
testcase_05 AC 28 ms
11,008 KB
testcase_06 AC 28 ms
11,008 KB
testcase_07 AC 35 ms
11,648 KB
testcase_08 AC 36 ms
11,648 KB
testcase_09 AC 40 ms
11,904 KB
testcase_10 AC 36 ms
11,520 KB
testcase_11 AC 34 ms
11,264 KB
testcase_12 AC 36 ms
11,520 KB
testcase_13 AC 36 ms
11,392 KB
testcase_14 AC 32 ms
11,136 KB
testcase_15 AC 42 ms
11,776 KB
testcase_16 AC 37 ms
11,520 KB
testcase_17 AC 33 ms
11,136 KB
testcase_18 AC 32 ms
11,008 KB
testcase_19 AC 30 ms
11,136 KB
testcase_20 AC 32 ms
11,008 KB
testcase_21 AC 30 ms
11,008 KB
testcase_22 AC 30 ms
11,136 KB
testcase_23 AC 203 ms
29,428 KB
testcase_24 AC 179 ms
25,812 KB
testcase_25 AC 203 ms
28,496 KB
testcase_26 AC 187 ms
27,252 KB
testcase_27 AC 452 ms
41,700 KB
testcase_28 AC 144 ms
20,156 KB
testcase_29 AC 424 ms
39,896 KB
testcase_30 AC 284 ms
29,820 KB
testcase_31 AC 460 ms
43,060 KB
testcase_32 AC 546 ms
47,212 KB
testcase_33 AC 279 ms
29,824 KB
testcase_34 AC 325 ms
32,792 KB
testcase_35 AC 393 ms
37,268 KB
testcase_36 AC 271 ms
29,380 KB
testcase_37 AC 29 ms
11,008 KB
testcase_38 AC 28 ms
11,008 KB
testcase_39 AC 449 ms
36,208 KB
testcase_40 AC 127 ms
17,280 KB
testcase_41 AC 144 ms
18,708 KB
testcase_42 AC 382 ms
32,284 KB
testcase_43 AC 180 ms
21,244 KB
testcase_44 AC 299 ms
27,208 KB
testcase_45 AC 183 ms
21,356 KB
testcase_46 AC 113 ms
16,752 KB
testcase_47 AC 498 ms
38,724 KB
testcase_48 AC 481 ms
38,768 KB
testcase_49 AC 492 ms
38,752 KB
testcase_50 AC 490 ms
38,888 KB
testcase_51 AC 488 ms
38,756 KB
testcase_52 AC 399 ms
30,588 KB
testcase_53 AC 546 ms
37,956 KB
testcase_54 AC 30 ms
10,880 KB
testcase_55 AC 29 ms
11,008 KB
testcase_56 AC 29 ms
11,008 KB
testcase_57 AC 207 ms
20,292 KB
testcase_58 AC 310 ms
24,988 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