結果

問題 No.1707 Simple Range Reverse Problem
ユーザー shotoyooshotoyoo
提出日時 2021-10-15 23:38:12
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 827 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,276 KB
実行使用メモリ 69,696 KB
最終ジャッジ日時 2024-09-17 18:40:32
合計ジャッジ時間 1,763 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
54,064 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 50 ms
67,676 KB
testcase_05 AC 50 ms
68,120 KB
testcase_06 AC 53 ms
69,696 KB
testcase_07 AC 51 ms
68,488 KB
testcase_08 AC 49 ms
66,628 KB
testcase_09 AC 54 ms
67,292 KB
testcase_10 AC 49 ms
68,980 KB
testcase_11 AC 48 ms
66,732 KB
testcase_12 AC 50 ms
68,384 KB
testcase_13 AC 53 ms
68,008 KB
testcase_14 AC 50 ms
66,948 KB
testcase_15 AC 51 ms
68,316 KB
testcase_16 AC 50 ms
68,584 KB
testcase_17 AC 51 ms
67,456 KB
testcase_18 AC 52 ms
68,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda : sys.stdin.readline().rstrip()

write = lambda x: sys.stdout.write(x+"\n")
debug = lambda x: sys.stderr.write(x+"\n")
writef = lambda x: print("{:.12f}".format(x))
# sys.setrecursionlimit(3*10**5+10)
def sub(a):
    t = [[] for _ in range(n+1)]
    for i in range(2*n):
        v = a[i]
        l = []
        if i>0:
            l.append(a[i-1])
        if i+1<2*n:
            l.append(a[i+1])
        t[v].extend(l)
    for i in range(n+1):
        t[i] = tuple(sorted(t[i]))
    return [set(item) for item in t]
t = int(input())
for _ in range(t):
    n = int(input())
    a = list(map(int, input().split()))
    s1 = sub(a)
    s2 = sub(list(range(1,n+1)) + list(range(1,n+1)))
#     print(s1,s2)
    if all((s1[i]==s2[i] for i in range(n+1))):
        print("Yes")
    else:
        print("No")
0