結果
| 問題 |
No.3086 Re One Two
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-04-16 00:43:00 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 1,286 bytes |
| コンパイル時間 | 455 ms |
| コンパイル使用メモリ | 81,704 KB |
| 実行使用メモリ | 121,904 KB |
| 最終ジャッジ日時 | 2025-04-16 00:47:10 |
| 合計ジャッジ時間 | 7,622 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 11 WA * 21 |
ソースコード
import sys
import math
import bisect
from heapq import heapify, heappop, heappush
from collections import deque, defaultdict, Counter
from functools import lru_cache
from itertools import accumulate, combinations, permutations, product
sys.set_int_max_str_digits(10 ** 6)
sys.setrecursionlimit(1000000)
MOD = 10 ** 9 + 7
MOD99 = 998244353
input = lambda: sys.stdin.readline().strip()
NI = lambda: int(input())
NMI = lambda: map(int, input().split())
NLI = lambda: list(NMI())
SI = lambda: input()
SMI = lambda: input().split()
SLI = lambda: list(SMI())
EI = lambda m: [NLI() for _ in range(m)]
def main():
N = NI()
AB = EI(N)
D = []
ans = [0] * N
now = 0
for i, (a, b) in enumerate(AB, start=1):
if a == 1 or b == 2:
D.append([i, a, b])
elif b == 1:
ans[now] = i
now += 1
while D and (D[-1][1] == 1 or D[-1][2] == 2):
x, y, z = D.pop()
ans[now] = x
now += 1
else:
ans[now] = i
now += 1
while D and D[-1][1] == 1:
ans[now] = D.pop()[0]
now += 1
while D:
ans[now] = D.pop()[0]
now += 1
print(*ans, sep="\n")
if __name__ == "__main__":
main()