結果
問題 | No.318 学学学学学 |
ユーザー | LyricalMaestro |
提出日時 | 2024-07-28 04:20:56 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 925 bytes |
コンパイル時間 | 592 ms |
コンパイル使用メモリ | 82,432 KB |
実行使用メモリ | 124,056 KB |
最終ジャッジ日時 | 2024-07-28 04:21:02 |
合計ジャッジ時間 | 5,551 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 57 ms
71,424 KB |
testcase_01 | AC | 71 ms
84,052 KB |
testcase_02 | RE | - |
testcase_03 | AC | 61 ms
76,800 KB |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | AC | 122 ms
100,864 KB |
testcase_20 | RE | - |
testcase_21 | AC | 41 ms
53,760 KB |
testcase_22 | AC | 41 ms
53,632 KB |
testcase_23 | AC | 40 ms
54,272 KB |
testcase_24 | AC | 43 ms
53,888 KB |
testcase_25 | AC | 40 ms
53,760 KB |
testcase_26 | AC | 41 ms
53,760 KB |
testcase_27 | AC | 41 ms
53,864 KB |
testcase_28 | AC | 40 ms
54,016 KB |
ソースコード
## https://yukicoder.me/problems/no/318 from collections import deque def main(): N = int(input()) A = list(map(int, input().split())) a_map = {} for i in range(N): a = A[i] if a not in a_map: a_map[a] = [i, i] else: a_map[a][1] = i event_map = {} for a, (s, g) in a_map.items(): if s not in event_map: event_map[s] = [] event_map[s].append((a, g)) queue = deque() answer = [0] * N for t in range(N): if t in event_map: for a, g in event_map[t]: while len(queue) > 0 and queue[-1][0] < a: queue.pop() queue.append((a, g)) answer[t] = queue[0][0] while len(queue) > 0 and queue[0][1] <= t: queue.pop() print(" ".join(map(str, answer))) if __name__ == '__main__': main()