結果

問題 No.1369 交換門松列・竹
ユーザー titiatitia
提出日時 2021-01-29 22:32:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 802 ms / 2,000 ms
コード長 1,154 bytes
コンパイル時間 356 ms
コンパイル使用メモリ 82,420 KB
実行使用メモリ 107,664 KB
最終ジャッジ日時 2024-06-27 08:50:31
合計ジャッジ時間 9,659 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
59,708 KB
testcase_01 AC 43 ms
58,608 KB
testcase_02 AC 43 ms
58,960 KB
testcase_03 AC 42 ms
58,832 KB
testcase_04 AC 41 ms
58,192 KB
testcase_05 AC 43 ms
58,240 KB
testcase_06 AC 39 ms
54,144 KB
testcase_07 AC 53 ms
66,924 KB
testcase_08 AC 42 ms
58,452 KB
testcase_09 AC 55 ms
67,524 KB
testcase_10 AC 58 ms
68,796 KB
testcase_11 AC 44 ms
59,008 KB
testcase_12 AC 44 ms
57,728 KB
testcase_13 AC 236 ms
77,696 KB
testcase_14 AC 277 ms
78,792 KB
testcase_15 AC 131 ms
81,964 KB
testcase_16 AC 201 ms
82,464 KB
testcase_17 AC 201 ms
82,176 KB
testcase_18 AC 192 ms
82,596 KB
testcase_19 AC 133 ms
81,916 KB
testcase_20 AC 642 ms
82,732 KB
testcase_21 AC 185 ms
82,048 KB
testcase_22 AC 589 ms
82,124 KB
testcase_23 AC 197 ms
82,560 KB
testcase_24 AC 792 ms
82,260 KB
testcase_25 AC 732 ms
78,176 KB
testcase_26 AC 661 ms
78,148 KB
testcase_27 AC 692 ms
79,376 KB
testcase_28 AC 604 ms
81,792 KB
testcase_29 AC 802 ms
81,844 KB
testcase_30 AC 84 ms
107,648 KB
testcase_31 AC 84 ms
107,664 KB
testcase_32 AC 155 ms
77,340 KB
testcase_33 AC 231 ms
82,048 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+2,i+3])

    NO=sorted(set(NO))

    flag=0

    if len(NO)<=500:
        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(x-5,x+6))+list(range(i-5,i+6)):
                    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