結果

問題 No.1369 交換門松列・竹
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2021-02-12 11:00:32
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,176 bytes
コンパイル時間 271 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 81,280 KB
最終ジャッジ日時 2024-07-19 05:15:32
合計ジャッジ時間 4,224 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,968 KB
testcase_01 AC 47 ms
57,600 KB
testcase_02 AC 46 ms
58,240 KB
testcase_03 AC 46 ms
57,728 KB
testcase_04 AC 44 ms
57,600 KB
testcase_05 AC 41 ms
52,096 KB
testcase_06 AC 39 ms
51,712 KB
testcase_07 AC 38 ms
51,840 KB
testcase_08 AC 42 ms
57,472 KB
testcase_09 AC 60 ms
63,744 KB
testcase_10 AC 38 ms
52,096 KB
testcase_11 AC 46 ms
59,776 KB
testcase_12 AC 44 ms
57,728 KB
testcase_13 AC 206 ms
78,604 KB
testcase_14 AC 206 ms
79,288 KB
testcase_15 AC 110 ms
81,280 KB
testcase_16 AC 135 ms
81,152 KB
testcase_17 AC 140 ms
80,896 KB
testcase_18 AC 134 ms
80,896 KB
testcase_19 AC 110 ms
80,896 KB
testcase_20 AC 59 ms
69,248 KB
testcase_21 AC 111 ms
80,768 KB
testcase_22 AC 57 ms
69,504 KB
testcase_23 AC 139 ms
81,024 KB
testcase_24 AC 59 ms
69,376 KB
testcase_25 AC 175 ms
76,032 KB
testcase_26 AC 216 ms
76,160 KB
testcase_27 AC 182 ms
76,288 KB
testcase_28 AC 54 ms
68,096 KB
testcase_29 AC 55 ms
68,224 KB
testcase_30 AC 58 ms
72,320 KB
testcase_31 AC 59 ms
72,576 KB
testcase_32 WA -
testcase_33 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

def main1(n,a):
  ary=[]
  cnt=0
  for i in range(n-2):
    if a[i]!=a[i+1]!=a[i+2]!=a[i]:
      if a[i]>a[i+1]<a[i+2] or a[i]<a[i+1]>a[i+2]:
        continue
    ary.append(i)
  if len(ary)>5:return 'No'
  # 門松になっていない箇所だけ探索する。
  for x in ary:
    for y in (x,x+1,x+2):
      for z in range(n):
        # y,zを入れ替える
        a[y],a[z]=a[z],a[y]
        # 入れ替えた周辺ともともと門松でない箇所がが門松になっているか。
        # iを変えると、i-2始まりの3要素、i-1始まりの3要素、i始まりの3要素、が影響を受ける。
        flg=True
        for idx in ary+[y,z]:
          for i in (idx-2,idx-1,idx):
            if i<0 or n-2<=i:continue
            if a[i]!=a[i+1]!=a[i+2]!=a[i]:
              if a[i]>a[i+1]<a[i+2] or a[i]<a[i+1]>a[i+2]:
                continue
            flg=False
        a[y],a[z]=a[z],a[y]
        if flg:return 'Yes'
  return 'No'

if __name__=='__main__':
  t=int(input())
  cases=[]
  for _ in range(t):
    n=int(input())
    a=list(map(int,input().split()))
    cases.append((n,a))
  for n,a in cases:
    ret1=main1(n,a)
    print(ret1)
0