結果

問題 No.1369 交換門松列・竹
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2021-01-29 22:21:57
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,421 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 81,408 KB
最終ジャッジ日時 2024-06-27 08:37:33
合計ジャッジ時間 3,767 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,352 KB
testcase_01 AC 40 ms
57,216 KB
testcase_02 WA -
testcase_03 AC 37 ms
52,096 KB
testcase_04 AC 36 ms
52,096 KB
testcase_05 AC 42 ms
58,368 KB
testcase_06 AC 42 ms
58,496 KB
testcase_07 AC 36 ms
52,224 KB
testcase_08 AC 36 ms
51,968 KB
testcase_09 AC 37 ms
52,224 KB
testcase_10 AC 41 ms
52,480 KB
testcase_11 WA -
testcase_12 AC 36 ms
52,992 KB
testcase_13 AC 257 ms
78,784 KB
testcase_14 WA -
testcase_15 AC 69 ms
80,932 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 67 ms
81,408 KB
testcase_20 AC 68 ms
81,152 KB
testcase_21 AC 68 ms
80,996 KB
testcase_22 AC 68 ms
81,056 KB
testcase_23 WA -
testcase_24 AC 67 ms
80,896 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 67 ms
80,512 KB
testcase_29 AC 67 ms
81,148 KB
testcase_30 AC 52 ms
72,704 KB
testcase_31 AC 52 ms
72,192 KB
testcase_32 WA -
testcase_33 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

離散して3箇所以上ある場合は不可能

"""

from sys import stdin
import sys

def kd(L):
    if L[0]==L[1] or L[1]==L[2] or L[2]==L[0]:
        return False
    elif max(L) == L[1] or min(L) == L[1]:
        return True
    else:
        return False


def kdl(L):
    for i in range(len(L)-2):
        if not kd(L[i:i+3]):
            return False
    return True


TT = int(stdin.readline())

for loop in range(TT):


    N = int(stdin.readline())
    A = list(map(int,stdin.readline().split()))
    
    nonKD = []

    cnt = 0
    while cnt < N-2:
        if not kd( A[cnt:cnt+3] ):
            nonKD.append(cnt)
            cnt += 1
        cnt += 1

    if len(nonKD) >= 3:
        print ("No")
        continue

    if len(nonKD) == 2:
        ans = "No"
        l = nonKD[0]
        r = nonKD[1]
        for i in range(3):
            for j in range(3):
                A[l+i],A[r+j] = A[r+j],A[l+i]
                if kdl(A[max(0,l-2):l+5]) and kdl(A[max(0,r-2):r+5]):
                    ans = "Yes"
                A[l+i],A[r+j] = A[r+j],A[l+i]
        print (ans)

    else:
        ans = "No"
        l = nonKD[0]
        for i in range(3):
            for j in range(N):
                A[l+i],A[j] = A[j],A[l+i]
                if kdl(A[max(0,l-2):l+5]) and kdl(A[max(0,j-2):j+3]):
                    ans = "Yes"
                A[l+i],A[j] = A[j],A[l+i]
        print (ans)
            
0