結果

問題 No.1369 交換門松列・竹
ユーザー titiatitia
提出日時 2021-01-29 22:18:28
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,137 bytes
コンパイル時間 300 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 112,000 KB
最終ジャッジ日時 2024-06-27 08:35:24
合計ジャッジ時間 6,934 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,480 KB
testcase_01 WA -
testcase_02 AC 40 ms
57,600 KB
testcase_03 AC 38 ms
52,608 KB
testcase_04 AC 38 ms
52,224 KB
testcase_05 AC 38 ms
52,224 KB
testcase_06 AC 36 ms
51,840 KB
testcase_07 AC 51 ms
63,624 KB
testcase_08 AC 37 ms
52,224 KB
testcase_09 AC 51 ms
64,608 KB
testcase_10 AC 58 ms
66,432 KB
testcase_11 AC 40 ms
57,600 KB
testcase_12 AC 39 ms
52,480 KB
testcase_13 AC 220 ms
78,116 KB
testcase_14 AC 204 ms
77,312 KB
testcase_15 AC 106 ms
81,664 KB
testcase_16 AC 146 ms
82,560 KB
testcase_17 AC 148 ms
83,072 KB
testcase_18 AC 145 ms
81,920 KB
testcase_19 AC 104 ms
81,792 KB
testcase_20 AC 383 ms
82,740 KB
testcase_21 AC 136 ms
82,176 KB
testcase_22 AC 347 ms
82,176 KB
testcase_23 AC 140 ms
81,792 KB
testcase_24 AC 488 ms
82,316 KB
testcase_25 AC 459 ms
77,132 KB
testcase_26 AC 402 ms
77,952 KB
testcase_27 AC 430 ms
77,952 KB
testcase_28 AC 347 ms
81,536 KB
testcase_29 AC 450 ms
81,188 KB
testcase_30 AC 84 ms
112,000 KB
testcase_31 AC 84 ms
111,852 KB
testcase_32 AC 164 ms
77,952 KB
testcase_33 AC 170 ms
81,740 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def kado(x,y,z):
    if x==z:
        return 0
    
    if y<x and y<z:
        return 1
    if y>x and y>z:
        return 1
    return 0
        
T=int(input())
for tests in range(T):
    N=int(input())
    A=list(map(int,input().split()))

    NO=[]
    for i in range(1,N-1):
        if kado(A[i-1],A[i],A[i+1])==0:
            NO.extend([i-3,i-2,i-1,i,i+1,i+1,i+2,i+3])

    NO=sorted(set(NO))

    flag=0

    if len(NO)<=200:
        for x in NO:
            if flag==1:
                break
            if x<0 or x>=N:
                continue
            for i in range(N):
                if flag==1:
                    break
                if x==i:
                    continue

                A[x],A[i]=A[i],A[x]

                for a in NO+list(range(i-2,i+3)):
                    if a<=0 or a>=N-1:
                        continue
                    if kado(A[a-1],A[a],A[a+1])==0:
                        break
                else:
                    print("Yes")
                    flag=1
                    break

                A[x],A[i]=A[i],A[x]

    if flag==0:
        print("No")
                    
0