結果
問題 | No.1707 Simple Range Reverse Problem |
ユーザー | koba-e964 |
提出日時 | 2021-10-15 21:40:50 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 924 bytes |
コンパイル時間 | 156 ms |
コンパイル使用メモリ | 82,276 KB |
実行使用メモリ | 61,904 KB |
最終ジャッジ日時 | 2024-09-17 17:19:53 |
合計ジャッジ時間 | 1,717 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
53,152 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 44 ms
60,144 KB |
testcase_15 | AC | 44 ms
60,108 KB |
testcase_16 | AC | 44 ms
61,000 KB |
testcase_17 | AC | 43 ms
60,248 KB |
testcase_18 | AC | 44 ms
61,904 KB |
ソースコード
#!/usr/bin/env python3 import sys readline = sys.stdin.buffer.readline sys.setrecursionlimit(10 ** 7) t = int(readline()) def calc(a): n = len(a) // 2 f = [[] for _ in range(n + 1)] for i in range(2 * n): f[a[i]].append(i) for i in range(1, n + 1): if len(f[i]) != 2: return False if a[0] != 1 or a[2 * n - 1] != n: return False if n == 1: return True if all(a[i] == i % n + 1 for i in range(2 * n)): return True x = f[1][1] b = [0] * (2 * n) y = x // 2 for i in range(y + 1): b[i] = i + 1 for i in range(y): b[y + 1 + i] = y - i for i in range(n - y): b[2 * y + 1] = n - i for i in range(n - y - 1): b[2 * y + 1 + n - y + i] = y + 1 + i return a == b for _ in range(t): n = int(readline()) a = list(map(int, readline().split())) print('Yes' if calc(a) else 'No')