結果

問題 No.1707 Simple Range Reverse Problem
ユーザー recurakirecuraki
提出日時 2021-10-15 22:37:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 99 ms / 2,000 ms
コード長 780 bytes
コンパイル時間 254 ms
コンパイル使用メモリ 82,192 KB
実行使用メモリ 81,024 KB
最終ジャッジ日時 2024-09-17 17:46:27
合計ジャッジ時間 2,513 ms
ジャッジサーバーID
(参考情報)
judge6 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
74,496 KB
testcase_01 AC 77 ms
80,000 KB
testcase_02 AC 82 ms
79,904 KB
testcase_03 AC 80 ms
79,844 KB
testcase_04 AC 81 ms
80,384 KB
testcase_05 AC 84 ms
80,720 KB
testcase_06 AC 81 ms
80,640 KB
testcase_07 AC 79 ms
80,384 KB
testcase_08 AC 78 ms
79,872 KB
testcase_09 AC 80 ms
80,384 KB
testcase_10 AC 79 ms
80,128 KB
testcase_11 AC 77 ms
80,384 KB
testcase_12 AC 79 ms
80,384 KB
testcase_13 AC 78 ms
80,120 KB
testcase_14 AC 91 ms
80,220 KB
testcase_15 AC 99 ms
81,024 KB
testcase_16 AC 86 ms
80,128 KB
testcase_17 AC 97 ms
80,896 KB
testcase_18 AC 97 ms
80,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from pprint import pprint

import math
INF = 1 << 63
def do():
    n = int(input())
    l = list(map(int, input().split()))
    if l[0] != 1:
        print("No")
        return
    if l[-1] != n:
        print("No")
        return
    for i in range(n):
        #print("seek", i, (i+1)%n + 1)
        if l[i+1] == ((i+1)%n + 1): continue

        ll, rr = i, -1
        t = l[i]
        for i in range(ll+1, 2*n):
            if l[i] == t:
                rr = i
                break
        l = l[:ll] + list(reversed(l[ll:rr + 1])) + l[rr+1:]
    for i in range(n):
        if l[0+i] == l[n+i] == (i+1):
            continue
        print("No")
        return
    print("Yes")



# n questions
q = int(input())
for _ in range(q):
    do()
0