結果
問題 | No.808 Kaiten Sushi? |
ユーザー | mkawa2 |
提出日時 | 2022-03-03 09:33:13 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,192 bytes |
コンパイル時間 | 183 ms |
コンパイル使用メモリ | 82,464 KB |
実行使用メモリ | 118,920 KB |
最終ジャッジ日時 | 2024-07-17 06:32:54 |
合計ジャッジ時間 | 11,571 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
53,564 KB |
testcase_01 | AC | 39 ms
54,976 KB |
testcase_02 | AC | 38 ms
53,008 KB |
testcase_03 | AC | 39 ms
53,180 KB |
testcase_04 | AC | 39 ms
54,044 KB |
testcase_05 | AC | 40 ms
53,872 KB |
testcase_06 | AC | 39 ms
54,640 KB |
testcase_07 | AC | 57 ms
67,432 KB |
testcase_08 | AC | 57 ms
67,304 KB |
testcase_09 | AC | 120 ms
77,952 KB |
testcase_10 | AC | 98 ms
77,280 KB |
testcase_11 | WA | - |
testcase_12 | AC | 101 ms
77,520 KB |
testcase_13 | AC | 98 ms
76,932 KB |
testcase_14 | AC | 63 ms
69,308 KB |
testcase_15 | AC | 119 ms
77,888 KB |
testcase_16 | WA | - |
testcase_17 | AC | 77 ms
75,004 KB |
testcase_18 | AC | 57 ms
66,316 KB |
testcase_19 | AC | 49 ms
63,732 KB |
testcase_20 | AC | 57 ms
65,932 KB |
testcase_21 | AC | 51 ms
63,932 KB |
testcase_22 | AC | 56 ms
65,128 KB |
testcase_23 | AC | 96 ms
94,352 KB |
testcase_24 | AC | 92 ms
91,900 KB |
testcase_25 | AC | 99 ms
96,664 KB |
testcase_26 | AC | 99 ms
97,224 KB |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | AC | 349 ms
118,920 KB |
testcase_33 | AC | 263 ms
93,864 KB |
testcase_34 | AC | 282 ms
96,828 KB |
testcase_35 | AC | 300 ms
100,940 KB |
testcase_36 | AC | 259 ms
94,472 KB |
testcase_37 | AC | 40 ms
53,736 KB |
testcase_38 | AC | 40 ms
53,728 KB |
testcase_39 | AC | 290 ms
105,956 KB |
testcase_40 | AC | 142 ms
82,092 KB |
testcase_41 | AC | 202 ms
84,280 KB |
testcase_42 | AC | 278 ms
99,904 KB |
testcase_43 | AC | 228 ms
90,504 KB |
testcase_44 | AC | 223 ms
93,376 KB |
testcase_45 | AC | 232 ms
89,912 KB |
testcase_46 | AC | 204 ms
82,120 KB |
testcase_47 | AC | 304 ms
111,824 KB |
testcase_48 | AC | 307 ms
112,348 KB |
testcase_49 | AC | 299 ms
112,336 KB |
testcase_50 | AC | 305 ms
112,184 KB |
testcase_51 | AC | 306 ms
111,888 KB |
testcase_52 | AC | 222 ms
93,980 KB |
testcase_53 | AC | 273 ms
110,964 KB |
testcase_54 | AC | 42 ms
54,436 KB |
testcase_55 | AC | 39 ms
53,280 KB |
testcase_56 | AC | 39 ms
53,088 KB |
testcase_57 | AC | 160 ms
90,952 KB |
testcase_58 | AC | 187 ms
93,040 KB |
ソースコード
import sys # sys.setrecursionlimit(200005) int1 = lambda x: int(x)-1 pDB = lambda *x: print(*x, end="\n", file=sys.stderr) p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr) def II(): return int(sys.stdin.readline()) def LI(): return list(map(int, sys.stdin.readline().split())) def LLI(rows_number): return [LI() for _ in range(rows_number)] def LI1(): return list(map(int1, sys.stdin.readline().split())) def LLI1(rows_number): return [LI1() for _ in range(rows_number)] def SI(): return sys.stdin.readline().rstrip() dij = [(0, 1), (-1, 0), (0, -1), (1, 0)] # dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)] inf = (1 << 63)-1 # inf = (1 << 31)-1 md = 10**9+7 # md = 998244353 from heapq import * n, l = LI() xx = LI() yy = LI() xt = [] for x in xx: xt.append((x, 0)) for x in yy: xt.append((x, 1)) xt.sort(key=lambda x: x[0]) # print(xt) gg = [] tt = [] for x, t in xt: if not tt or tt[-1] != t: gg.append([]) tt.append(t) heappush(gg[-1], -x) # pDB(gg) # pDB(tt) if tt[0] == tt[-1]: g = gg.pop() tt.pop() for x in g: heappush(gg[0], x+l) # pDB(gg) # pDB(tt) if tt[0] == 1: tt = tt[1:]+tt[:1] gg = gg[1:]+gg[:1] # pDB(gg) # pDB(tt) log = [] ans = 0 now = 0 while gg: ngg = [] ntt = [] last = -1 for t, g in zip(tt, gg): x = -heappop(g) log.append(x) ans += (x-now)%l now = x last = t if g: if not ntt or ntt[-1] != t: ntt.append(t) ngg.append(g) else: for x in g: heappush(ngg[-1], x) # pDB(ngg) # pDB(ntt) tt, gg = ntt, ngg if tt and tt[0] == tt[-1]: if last == tt[0]: for x in gg[0]: heappush(gg[-1], x-l) gg.pop(0) tt.pop(0) else: for x in gg[-1]: heappush(gg[0], x+l) gg.pop() tt.pop() print(ans) # print(*log, sep="\n") # pre = 0 # s = 0 # for x in log: # if x < 0: x += l # if x-pre > 0: # s += x-pre # else: # s += x-pre+l # pre = x # print(s)