結果

問題 No.808 Kaiten Sushi?
ユーザー maspymaspy
提出日時 2020-04-10 10:46:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 637 ms / 2,000 ms
コード長 2,253 bytes
コンパイル時間 495 ms
コンパイル使用メモリ 82,008 KB
実行使用メモリ 104,560 KB
最終ジャッジ日時 2024-09-14 19:07:48
合計ジャッジ時間 18,650 ms
ジャッジサーバーID
(参考情報)
judge6 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,880 KB
testcase_01 AC 43 ms
54,264 KB
testcase_02 AC 40 ms
53,352 KB
testcase_03 AC 42 ms
54,324 KB
testcase_04 AC 42 ms
53,628 KB
testcase_05 AC 42 ms
53,804 KB
testcase_06 AC 42 ms
54,140 KB
testcase_07 AC 99 ms
77,240 KB
testcase_08 AC 96 ms
76,920 KB
testcase_09 AC 126 ms
77,404 KB
testcase_10 AC 113 ms
77,628 KB
testcase_11 AC 101 ms
76,960 KB
testcase_12 AC 112 ms
77,544 KB
testcase_13 AC 102 ms
77,004 KB
testcase_14 AC 69 ms
72,544 KB
testcase_15 AC 128 ms
77,640 KB
testcase_16 AC 112 ms
77,368 KB
testcase_17 AC 77 ms
76,060 KB
testcase_18 AC 64 ms
70,920 KB
testcase_19 AC 56 ms
64,204 KB
testcase_20 AC 66 ms
70,924 KB
testcase_21 AC 59 ms
64,884 KB
testcase_22 AC 66 ms
70,384 KB
testcase_23 AC 250 ms
87,144 KB
testcase_24 AC 224 ms
84,204 KB
testcase_25 AC 243 ms
87,200 KB
testcase_26 AC 232 ms
85,300 KB
testcase_27 AC 528 ms
104,560 KB
testcase_28 AC 266 ms
83,060 KB
testcase_29 AC 518 ms
104,140 KB
testcase_30 AC 374 ms
93,772 KB
testcase_31 AC 540 ms
104,372 KB
testcase_32 AC 574 ms
101,348 KB
testcase_33 AC 371 ms
92,124 KB
testcase_34 AC 401 ms
96,588 KB
testcase_35 AC 468 ms
100,092 KB
testcase_36 AC 364 ms
91,736 KB
testcase_37 AC 41 ms
52,956 KB
testcase_38 AC 42 ms
53,444 KB
testcase_39 AC 586 ms
102,328 KB
testcase_40 AC 211 ms
81,764 KB
testcase_41 AC 268 ms
83,272 KB
testcase_42 AC 522 ms
103,408 KB
testcase_43 AC 291 ms
85,196 KB
testcase_44 AC 395 ms
96,684 KB
testcase_45 AC 291 ms
85,292 KB
testcase_46 AC 249 ms
83,696 KB
testcase_47 AC 621 ms
101,572 KB
testcase_48 AC 637 ms
101,696 KB
testcase_49 AC 619 ms
102,040 KB
testcase_50 AC 625 ms
101,684 KB
testcase_51 AC 608 ms
101,488 KB
testcase_52 AC 326 ms
100,564 KB
testcase_53 AC 402 ms
101,396 KB
testcase_54 AC 42 ms
54,564 KB
testcase_55 AC 41 ms
53,540 KB
testcase_56 AC 41 ms
53,220 KB
testcase_57 AC 206 ms
85,240 KB
testcase_58 AC 256 ms
94,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines
from bisect import bisect


class BinaryIndexedTree():
    def __init__(self, seq):
        self.size = len(seq)
        self.depth = self.size.bit_length()
        self.build(seq)

    def build(self, seq):
        data = seq
        size = self.size
        for i, x in enumerate(data):
            j = i + (i & (-i))
            if j < size:
                data[j] += data[i]
        self.data = data

    def __repr__(self):
        return self.data.__repr__()

    def get_sum(self, i):
        data = self.data
        s = 0
        while i:
            s += data[i]
            i -= i & -i
        return s

    def add(self, i, x):
        data = self.data
        size = self.size
        while i < size:
            data[i] += x
            i += i & -i

    def find_kth_element(self, k):
        data = self.data
        size = self.size
        x, sx = 0, 0
        dx = 1 << (self.depth)
        for i in range(self.depth - 1, -1, -1):
            dx = (1 << i)
            if x + dx >= size:
                continue
            y = x + dx
            sy = sx + data[y]
            if sy < k:
                x, sx = y, sy
        return x + 1


N, L = map(int, readline().split())
X = tuple(map(int, readline().split()))
Y = tuple(map(int, readline().split()))

sushi = BinaryIndexedTree([0] + [1] * (N + N))
tea = BinaryIndexedTree([0] + [1] * (N + N))

x = X[0]
sushi.add(1, -1)
sushi.add(N + 1, -1)
cycle = 0

for _ in range(N - 1):
    # 次の茶まで進む
    k = tea.get_sum(bisect(Y, x))  # 左にある茶の個数
    i = tea.find_kth_element(k + 1)
    if i > N:
        i -= N
        cycle += 1
    x = Y[i - 1]
    # 次の寿司まで進む
    k = sushi.get_sum(bisect(X, x))
    i = sushi.find_kth_element(k + 1)
    if i > N:
        i -= N
        cycle += 1
    x = X[i - 1]
    # 寿司を削除
    sushi.add(i, -1)
    sushi.add(i + N, -1)
    # 手前のお茶を削除
    k = tea.get_sum(bisect(Y, x) + N)
    i = tea.find_kth_element(k)
    if i > N:
        i -= N
    tea.add(i, -1)
    tea.add(i + N, -1)

i = tea.find_kth_element(1)
y = Y[i - 1]
if x > y:
    y += L
print(cycle * L + y)
0