結果

問題 No.1707 Simple Range Reverse Problem
ユーザー flippergoflippergo
提出日時 2024-12-21 18:37:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 57 ms / 2,000 ms
コード長 889 bytes
コンパイル時間 338 ms
コンパイル使用メモリ 82,356 KB
実行使用メモリ 63,564 KB
最終ジャッジ日時 2024-12-21 18:37:57
合計ジャッジ時間 2,321 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,684 KB
testcase_01 AC 50 ms
60,092 KB
testcase_02 AC 50 ms
61,160 KB
testcase_03 AC 50 ms
62,248 KB
testcase_04 AC 51 ms
62,336 KB
testcase_05 AC 50 ms
62,288 KB
testcase_06 AC 53 ms
62,736 KB
testcase_07 AC 52 ms
63,432 KB
testcase_08 AC 57 ms
63,488 KB
testcase_09 AC 49 ms
62,368 KB
testcase_10 AC 49 ms
62,676 KB
testcase_11 AC 50 ms
61,620 KB
testcase_12 AC 50 ms
62,536 KB
testcase_13 AC 53 ms
62,796 KB
testcase_14 AC 50 ms
63,564 KB
testcase_15 AC 53 ms
62,804 KB
testcase_16 AC 51 ms
63,268 KB
testcase_17 AC 48 ms
62,144 KB
testcase_18 AC 51 ms
63,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def paln(i,j,A):
    for k in range(j-i+1):
        if A[i+k]!=A[j-k]:
            return False
    return True
def check(N,A):
    for i in range(N):
        if A[i]!=i+1 or A[i]!=A[i+N]:
            return False
    return True
T = int(input())
for _ in range(T):
    N = int(input())
    A = list(map(int,input().split()))
    if check(N,A):
        print("Yes")
    else:
        B = {i:[] for i in range(1,N+1)}
        for i in range(2*N):
            B[A[i]].append(i)
        B = list(B.values())
        C = [0]*len(B)
        k = 0
        for i,j in B:
            if paln(i,j,A):
                C[k] = 1
            k += 1
        if C.count(0)!=1:
            print("No")
        else:
            k = C.index(0)
            i,j = B[k]
            A[i:j+1] = A[i:j+1][::-1]
            if check(N,A):
                print("Yes")
            else:
                print("No")
0