結果

問題 No.1913 Periodic Comparison
ユーザー chineristACchineristAC
提出日時 2022-02-06 03:31:42
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 795 bytes
コンパイル時間 384 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 125,668 KB
最終ジャッジ日時 2024-06-11 13:43:39
合計ジャッジ時間 10,972 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
55,168 KB
testcase_01 AC 40 ms
55,168 KB
testcase_02 AC 77 ms
84,736 KB
testcase_03 AC 42 ms
55,424 KB
testcase_04 AC 41 ms
55,424 KB
testcase_05 AC 42 ms
55,168 KB
testcase_06 AC 40 ms
55,296 KB
testcase_07 AC 42 ms
55,808 KB
testcase_08 AC 117 ms
93,688 KB
testcase_09 AC 208 ms
124,708 KB
testcase_10 AC 109 ms
93,308 KB
testcase_11 AC 210 ms
124,472 KB
testcase_12 AC 137 ms
124,024 KB
testcase_13 AC 95 ms
85,592 KB
testcase_14 AC 173 ms
123,904 KB
testcase_15 AC 204 ms
124,552 KB
testcase_16 WA -
testcase_17 AC 109 ms
93,568 KB
testcase_18 AC 110 ms
92,432 KB
testcase_19 AC 209 ms
124,808 KB
testcase_20 AC 157 ms
123,760 KB
testcase_21 AC 210 ms
124,524 KB
testcase_22 RE -
testcase_23 AC 94 ms
85,632 KB
testcase_24 AC 207 ms
124,548 KB
testcase_25 AC 143 ms
123,736 KB
testcase_26 AC 163 ms
124,024 KB
testcase_27 AC 107 ms
93,056 KB
testcase_28 AC 112 ms
93,616 KB
testcase_29 AC 206 ms
124,628 KB
testcase_30 RE -
testcase_31 AC 94 ms
85,636 KB
testcase_32 AC 103 ms
85,632 KB
testcase_33 WA -
testcase_34 AC 212 ms
125,056 KB
testcase_35 AC 202 ms
124,548 KB
testcase_36 AC 142 ms
123,668 KB
testcase_37 AC 205 ms
124,932 KB
testcase_38 AC 39 ms
55,552 KB
testcase_39 WA -
testcase_40 AC 197 ms
125,020 KB
testcase_41 AC 189 ms
125,164 KB
testcase_42 AC 195 ms
125,668 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,random,bisect
from collections import deque,defaultdict


input = lambda :sys.stdin.readline().rstrip()
mi = lambda :map(int,input().split())
li = lambda :list(mi())

N = int(input())
X = li()
Y = li()

M = max(Y)
f_inv = [-1] * (M+1)
for i in range(N):
    f_inv[Y[i]] = N * X[i] + i

deq = deque([-1]*N)
for i in range(M+1)[::-1]:
    #if not deq:
        #exit(print(-1))
    v = deq.popleft()
    if f_inv[i]==-1:
        f_inv[i] = v
    else:
        if v!=-1 and v!=f_inv[i]:
            exit(print(-1))
        elif v==-1:
            v = f_inv[i]
    
    if v==-1:
        deq.append(v)
    elif N <= v:
        deq.append(v-N)
#if deq:
    #exit(print(-1))
    
ans = [0] * N
for i in range(M+1):
    if f_inv[i] < N and f_inv[i]!=-1:
        ans[f_inv[i]] = i

print(*ans)
0