結果
問題 | No.484 収穫 |
ユーザー | mkawa2 |
提出日時 | 2023-04-19 15:01:13 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 2,288 ms / 3,000 ms |
コード長 | 1,508 bytes |
コンパイル時間 | 854 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 244,256 KB |
最終ジャッジ日時 | 2024-10-14 15:01:06 |
合計ジャッジ時間 | 18,069 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
52,480 KB |
testcase_01 | AC | 40 ms
52,640 KB |
testcase_02 | AC | 40 ms
52,480 KB |
testcase_03 | AC | 41 ms
52,608 KB |
testcase_04 | AC | 40 ms
52,864 KB |
testcase_05 | AC | 40 ms
53,120 KB |
testcase_06 | AC | 42 ms
53,120 KB |
testcase_07 | AC | 41 ms
53,340 KB |
testcase_08 | AC | 42 ms
53,120 KB |
testcase_09 | AC | 69 ms
69,632 KB |
testcase_10 | AC | 94 ms
76,588 KB |
testcase_11 | AC | 64 ms
68,224 KB |
testcase_12 | AC | 1,263 ms
192,324 KB |
testcase_13 | AC | 2,155 ms
237,528 KB |
testcase_14 | AC | 1,533 ms
201,604 KB |
testcase_15 | AC | 1,705 ms
209,324 KB |
testcase_16 | AC | 2,288 ms
244,256 KB |
testcase_17 | AC | 145 ms
139,652 KB |
testcase_18 | AC | 147 ms
139,472 KB |
testcase_19 | AC | 1,400 ms
153,432 KB |
testcase_20 | AC | 1,361 ms
154,104 KB |
testcase_21 | AC | 1,358 ms
153,320 KB |
testcase_22 | AC | 1,951 ms
223,884 KB |
testcase_23 | AC | 168 ms
140,412 KB |
ソースコード
import sys # sys.setrecursionlimit(200005) int1 = lambda x: int(x)-1 pDB = lambda *x: print(*x, end="\n", file=sys.stderr) p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr) def II(): return int(sys.stdin.readline()) def LI(): return list(map(int, sys.stdin.readline().split())) def LLI(rows_number): return [LI() for _ in range(rows_number)] def LI1(): return list(map(int1, sys.stdin.readline().split())) def LLI1(rows_number): return [LI1() for _ in range(rows_number)] def SI(): return sys.stdin.readline().rstrip() dij = [(0, 1), (-1, 0), (0, -1), (1, 0)] # dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)] inf = (1 << 63)-1 # md = 10**9+7 md = 998244353 from heapq import * def pack(l,r,s): p=l*n+r return p*2+s def unpack(p): p,s=divmod(p,2) l,r=divmod(p,n) return l,r,s n=II() aa=LI() hp=[] dist=[inf]*(n*n*2) p=pack(0,n-1,0) dist[p]=aa[0] heappush(hp,(aa[0],p)) p=pack(0,n-1,1) dist[p]=aa[-1] heappush(hp,(aa[-1],p)) def push(d,p): if d>=dist[p]:return dist[p]=d heappush(hp,(d,p)) while hp: d,p=heappop(hp) if d>dist[p]:continue l,r,s=unpack(p) if l==r: print(d) exit() if s: nd=max(d+1,aa[r-1]) np=pack(l,r-1,1) push(nd,np) nd=max(d+r-l,aa[l]) np=pack(l,r-1,0) push(nd,np) else: nd=max(d+1,aa[l+1]) np=pack(l+1,r,0) push(nd,np) nd=max(d+r-l,aa[r]) np=pack(l+1,r,1) push(nd,np)