結果

問題 No.1369 交換門松列・竹
ユーザー convexineqconvexineq
提出日時 2021-01-30 09:21:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 431 ms / 2,000 ms
コード長 967 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 82,024 KB
実行使用メモリ 83,072 KB
最終ジャッジ日時 2024-06-27 21:07:45
合計ジャッジ時間 5,611 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 40 ms
52,352 KB
testcase_02 AC 40 ms
52,096 KB
testcase_03 AC 40 ms
52,224 KB
testcase_04 AC 40 ms
52,224 KB
testcase_05 AC 40 ms
51,840 KB
testcase_06 AC 42 ms
51,968 KB
testcase_07 AC 41 ms
51,968 KB
testcase_08 AC 42 ms
52,096 KB
testcase_09 AC 40 ms
52,096 KB
testcase_10 AC 40 ms
52,480 KB
testcase_11 AC 40 ms
52,352 KB
testcase_12 AC 42 ms
52,480 KB
testcase_13 AC 334 ms
78,720 KB
testcase_14 AC 431 ms
79,872 KB
testcase_15 AC 123 ms
82,816 KB
testcase_16 AC 134 ms
82,432 KB
testcase_17 AC 130 ms
82,304 KB
testcase_18 AC 125 ms
82,304 KB
testcase_19 AC 115 ms
82,304 KB
testcase_20 AC 137 ms
82,816 KB
testcase_21 AC 121 ms
82,304 KB
testcase_22 AC 147 ms
83,072 KB
testcase_23 AC 131 ms
82,432 KB
testcase_24 AC 71 ms
73,856 KB
testcase_25 AC 206 ms
77,120 KB
testcase_26 AC 184 ms
76,928 KB
testcase_27 AC 183 ms
76,652 KB
testcase_28 AC 68 ms
73,344 KB
testcase_29 AC 67 ms
73,216 KB
testcase_30 AC 62 ms
74,752 KB
testcase_31 AC 62 ms
74,624 KB
testcase_32 AC 200 ms
76,672 KB
testcase_33 AC 154 ms
82,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def is_kadomatsu(a,b,c):
    return a!=b and b!=c and c!=a and (b==max(a,b,c) or b==min(a,b,c))

def check(a,res):
    return all(is_kadomatsu(a[i],a[i+1],a[i+2]) for i in res)

def checkv(a,i):
    if i < n-2 and not is_kadomatsu(a[i],a[i+1],a[i+2]): return False
    if 0 <= i-1 < n-2 and not is_kadomatsu(a[i-1],a[i],a[i+1]): return False
    if 0 <= i-2 < n-2 and not is_kadomatsu(a[i-2],a[i-1],a[i]): return False
    return True

def solve(n,a):
    res = [i for i in range(n-2) if not is_kadomatsu(a[i],a[i+1],a[i+2])]
    if len(res) >= 7: return 0
    v = res[0]
    for i in range(v,min(v+3,n)):
        for j in range(n):
            if i==j: continue
            a[i],a[j] = a[j],a[i]
            if check(a,res) and checkv(a,i) and checkv(a,j):
                return 1
            a[i],a[j] = a[j],a[i]
    return 0    

T = int(input())
for _ in range(T):
    n = int(input())
    *a, = map(int,input().split())
    print("Yes" if solve(n,a) else "No")
0