結果
問題 | No.1707 Simple Range Reverse Problem |
ユーザー | FromBooska |
提出日時 | 2023-09-24 11:54:45 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 848 bytes |
コンパイル時間 | 221 ms |
コンパイル使用メモリ | 82,516 KB |
実行使用メモリ | 136,484 KB |
最終ジャッジ日時 | 2024-07-17 12:49:41 |
合計ジャッジ時間 | 5,124 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 47 ms
62,384 KB |
testcase_01 | AC | 81 ms
76,792 KB |
testcase_02 | AC | 93 ms
77,272 KB |
testcase_03 | AC | 94 ms
77,452 KB |
testcase_04 | AC | 208 ms
78,136 KB |
testcase_05 | AC | 203 ms
78,244 KB |
testcase_06 | AC | 135 ms
77,160 KB |
testcase_07 | AC | 141 ms
76,924 KB |
testcase_08 | AC | 147 ms
77,264 KB |
testcase_09 | TLE | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
ソースコード
# 作れる全パターンを作ってみるか from collections import deque T = int(input()) for t in range(T): N = int(input()) A = tuple(list(map(int, input().split()))) B = [a for a in range(1, N+1)]+[a for a in range(1, N+1)] que = deque() que.append(B) visited = set() visited.add(tuple(B)) while que: current = que.popleft() test = False for i in range(N*2): for j in range(i+1, N*2): if current[i]==current[j] and j-i>1: temp = current[:i]+current[i:j+1][::-1]+current[j+1:] if tuple(temp) not in visited: visited.add(tuple(temp)) que.append(temp) #print(len(visited)) #print(visited) if A in visited: print('Yes') else: print('No')