結果

問題 No.2559 眩しい数直線
ユーザー けんぴんけんぴん
提出日時 2023-11-03 17:26:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 75 ms / 2,000 ms
コード長 445 bytes
コンパイル時間 532 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 74,044 KB
最終ジャッジ日時 2024-09-25 18:39:01
合計ジャッジ時間 2,800 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,584 KB
testcase_01 AC 38 ms
54,776 KB
testcase_02 AC 45 ms
54,124 KB
testcase_03 AC 54 ms
64,960 KB
testcase_04 AC 61 ms
64,948 KB
testcase_05 AC 63 ms
69,792 KB
testcase_06 AC 70 ms
73,724 KB
testcase_07 AC 69 ms
74,044 KB
testcase_08 AC 69 ms
72,996 KB
testcase_09 AC 63 ms
71,520 KB
testcase_10 AC 60 ms
68,748 KB
testcase_11 AC 44 ms
56,096 KB
testcase_12 AC 45 ms
55,832 KB
testcase_13 AC 70 ms
73,764 KB
testcase_14 AC 73 ms
73,160 KB
testcase_15 AC 75 ms
73,560 KB
testcase_16 AC 54 ms
65,472 KB
testcase_17 AC 68 ms
73,028 KB
testcase_18 AC 61 ms
64,860 KB
testcase_19 AC 67 ms
73,220 KB
testcase_20 AC 61 ms
71,300 KB
testcase_21 AC 50 ms
64,348 KB
testcase_22 AC 70 ms
73,916 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
N,X = map(int,input().split())
ans = [0]*X
for _ in range(N):
    # A: 座標, B: 人数
    q = deque([list(map(int,input().split()))])
    while q:
        A,B = q.popleft()
        ans[A-1] = max(ans[A-1], B)
        if 1 < A and 1 < B:
            if ans[A-2] < B-1:
                q.append([A-1, B-1])
        if A < X and 1 < B:
            if ans[A] < B-1:
                q.append([A+1, B-1])
print(*ans)
0