結果

問題 No.1369 交換門松列・竹
ユーザー hir355hir355
提出日時 2021-01-29 21:43:20
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 886 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 77,440 KB
最終ジャッジ日時 2024-06-27 07:56:25
合計ジャッジ時間 3,232 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,352 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 40 ms
52,352 KB
testcase_04 AC 41 ms
52,096 KB
testcase_05 AC 42 ms
52,132 KB
testcase_06 WA -
testcase_07 AC 42 ms
52,608 KB
testcase_08 WA -
testcase_09 AC 38 ms
52,608 KB
testcase_10 AC 38 ms
52,608 KB
testcase_11 WA -
testcase_12 AC 37 ms
52,352 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 60 ms
73,600 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 58 ms
72,576 KB
testcase_20 AC 64 ms
75,392 KB
testcase_21 AC 59 ms
73,856 KB
testcase_22 AC 64 ms
74,752 KB
testcase_23 WA -
testcase_24 AC 64 ms
75,392 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 63 ms
73,600 KB
testcase_29 AC 63 ms
73,600 KB
testcase_30 AC 59 ms
73,984 KB
testcase_31 AC 59 ms
74,240 KB
testcase_32 WA -
testcase_33 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

def is_kadomatsu(a, b, c):
    if a != b != c and a != c and (a < b > c or a > b < c):
        return True
    else:
        return False

input = sys.stdin.readline

t = int(input())
for _ in range(t):
    n = int(input())
    a = list(map(int, input().split()))
    d = [0] * (n - 2)
    for i in range(n - 2):
        if not is_kadomatsu(a[i], a[i + 1], a[i + 2]):
            d[i] = 1
    s = sum(d)
    for i in range(n - 1):
        l = max(0, i - 2)
        r = min(n - 2, i + 2)
        cnt = 0
        for j in range(l, r):
            cnt += d[j]
        if cnt != s:
            continue
        flg = True
        a[i], a[i + 1] = a[i + 1], a[i]
        for j in range(l, r):
            flg &= is_kadomatsu(a[j], a[j + 1], a[j + 2])
        a[i], a[i + 1] = a[i + 1], a[i]
        if flg:
            print('Yes')
            break
    else:
        print('No')
0