結果
問題 | No.930 数列圧縮 |
ユーザー | nep_pudding3 |
提出日時 | 2019-11-22 23:12:03 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 619 bytes |
コンパイル時間 | 189 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 222,208 KB |
最終ジャッジ日時 | 2024-10-11 04:47:30 |
合計ジャッジ時間 | 9,092 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 38 ms
51,968 KB |
testcase_07 | AC | 77 ms
75,904 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 51 ms
69,120 KB |
testcase_14 | AC | 52 ms
70,656 KB |
testcase_15 | WA | - |
testcase_16 | AC | 399 ms
208,128 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 38 ms
51,840 KB |
testcase_23 | AC | 300 ms
167,808 KB |
testcase_24 | AC | 38 ms
52,096 KB |
testcase_25 | AC | 37 ms
51,712 KB |
testcase_26 | AC | 37 ms
51,968 KB |
ソースコード
import sys sys.setrecursionlimit(10**6) N = int(input()) a = list(map(int,input().split())) if a[0] > a[-1]: print("No") exit() print('Yes') l = [i-1 for i in range(N)] r = [i+1 for i in range(N)] node = [0]*N node[0] = 1 node[-1] = 1 ans = [] def func(x): if node[x]: return if a[l[x]] < a[x]: ans.append(a[x]) node[x] = 1 r[l[x]] = r[x] l[r[x]] = l[x] if a[x] < a[r[x]]: ans.append(a[x]) node[x] = 1 r[l[x]] = r[x] l[r[x]] = l[x] func(l[x]) func(r[x]) func(1) for i in ans: print(i,end=" ") print(a[0])