結果

問題 No.1369 交換門松列・竹
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2021-02-12 11:07:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 256 ms / 2,000 ms
コード長 1,170 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 81,536 KB
最終ジャッジ日時 2024-07-19 05:21:42
合計ジャッジ時間 4,431 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,352 KB
testcase_01 AC 39 ms
52,096 KB
testcase_02 AC 38 ms
51,968 KB
testcase_03 AC 36 ms
52,352 KB
testcase_04 AC 36 ms
52,224 KB
testcase_05 AC 36 ms
52,224 KB
testcase_06 AC 37 ms
52,608 KB
testcase_07 AC 65 ms
65,664 KB
testcase_08 AC 37 ms
52,352 KB
testcase_09 AC 53 ms
62,848 KB
testcase_10 AC 56 ms
64,128 KB
testcase_11 AC 41 ms
57,984 KB
testcase_12 AC 38 ms
52,864 KB
testcase_13 AC 190 ms
79,040 KB
testcase_14 AC 193 ms
79,404 KB
testcase_15 AC 97 ms
81,024 KB
testcase_16 AC 112 ms
81,152 KB
testcase_17 AC 125 ms
81,152 KB
testcase_18 AC 116 ms
81,536 KB
testcase_19 AC 99 ms
81,152 KB
testcase_20 AC 255 ms
81,280 KB
testcase_21 AC 98 ms
81,152 KB
testcase_22 AC 256 ms
81,408 KB
testcase_23 AC 111 ms
81,024 KB
testcase_24 AC 56 ms
69,504 KB
testcase_25 AC 159 ms
76,544 KB
testcase_26 AC 184 ms
76,928 KB
testcase_27 AC 179 ms
76,672 KB
testcase_28 AC 55 ms
68,864 KB
testcase_29 AC 54 ms
68,608 KB
testcase_30 AC 59 ms
72,832 KB
testcase_31 AC 55 ms
72,704 KB
testcase_32 AC 120 ms
76,672 KB
testcase_33 AC 110 ms
81,152 KB
権限があれば一括ダウンロードができます

ソースコード

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)>6:return 'No'
  # 門松になっていない箇所だけ探索する。
  for x in ary:
    for y in (x,x+1,x+2):
      for z in range(n):
        if a[z]==a[y]:continue
        # y,zを入れ替える
        a[y],a[z]=a[z],a[y]
        # 入れ替えた周辺ともともと門松でない箇所が門松になっているか。
        # iを変えると、i-2始まりの3要素、i-1始まりの3要素、i始まりの3要素、が影響を受ける。
        flg=True
        for i in ary+[y-2,y-1,y,z-2,z-1,z]:
          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