結果
| 問題 | No.3086 Re One Two | 
| コンテスト | |
| ユーザー |  | 
| 提出日時 | 2025-04-16 00:29:15 | 
| 言語 | PyPy3 (7.3.15) | 
| 結果 | 
                                WA
                                 
                             | 
| 実行時間 | - | 
| コード長 | 1,261 bytes | 
| コンパイル時間 | 2,329 ms | 
| コンパイル使用メモリ | 81,972 KB | 
| 実行使用メモリ | 121,648 KB | 
| 最終ジャッジ日時 | 2025-04-16 00:30:48 | 
| 合計ジャッジ時間 | 10,070 ms | 
| ジャッジサーバーID (参考情報) | judge2 / judge4 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| 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:
            D.append([i, 1])
        elif b == 2:
            D.append([i, 2])
        elif b == 1:
            ans[now] = i
            now += 1
            while D:
                ans[now] = D.pop()[0]
                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()
            
            
            
        