結果

問題 No.1369 交換門松列・竹
ユーザー titiatitia
提出日時 2021-01-29 22:16:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,063 bytes
コンパイル時間 89 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 21,276 KB
最終ジャッジ日時 2024-06-27 08:32:26
合計ジャッジ時間 19,187 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,880 KB
testcase_01 AC 32 ms
10,752 KB
testcase_02 AC 31 ms
11,008 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 30 ms
10,880 KB
testcase_05 AC 30 ms
10,880 KB
testcase_06 AC 31 ms
10,880 KB
testcase_07 AC 31 ms
10,880 KB
testcase_08 AC 29 ms
10,880 KB
testcase_09 AC 30 ms
11,008 KB
testcase_10 AC 31 ms
10,752 KB
testcase_11 AC 29 ms
10,880 KB
testcase_12 AC 30 ms
10,880 KB
testcase_13 AC 152 ms
10,880 KB
testcase_14 WA -
testcase_15 AC 330 ms
15,732 KB
testcase_16 AC 403 ms
15,736 KB
testcase_17 AC 454 ms
15,856 KB
testcase_18 AC 413 ms
15,856 KB
testcase_19 AC 315 ms
15,860 KB
testcase_20 AC 1,929 ms
15,992 KB
testcase_21 AC 294 ms
15,860 KB
testcase_22 AC 1,664 ms
15,732 KB
testcase_23 AC 388 ms
15,860 KB
testcase_24 TLE -
testcase_25 AC 1,569 ms
10,880 KB
testcase_26 AC 1,333 ms
10,880 KB
testcase_27 AC 1,377 ms
11,008 KB
testcase_28 AC 1,725 ms
11,648 KB
testcase_29 TLE -
testcase_30 AC 88 ms
21,152 KB
testcase_31 AC 87 ms
21,276 KB
testcase_32 AC 74 ms
11,008 KB
testcase_33 AC 395 ms
11,776 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-1,i,i+1])

    NO=sorted(set(NO))

    flag=0

    if len(NO)<=50:
        for x in NO:
            if flag==1:
                break
            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