結果

問題 No.2146 2 Pows
ユーザー とりゐとりゐ
提出日時 2022-12-03 01:04:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,152 ms / 3,000 ms
コード長 529 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 152,852 KB
最終ジャッジ日時 2024-10-10 03:29:05
合計ジャッジ時間 30,750 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,484 KB
testcase_01 AC 39 ms
53,564 KB
testcase_02 AC 36 ms
52,704 KB
testcase_03 AC 37 ms
52,932 KB
testcase_04 AC 40 ms
52,468 KB
testcase_05 AC 1,267 ms
140,940 KB
testcase_06 AC 1,760 ms
152,852 KB
testcase_07 AC 1,392 ms
143,456 KB
testcase_08 AC 1,613 ms
144,712 KB
testcase_09 AC 2,152 ms
144,864 KB
testcase_10 AC 109 ms
77,296 KB
testcase_11 AC 109 ms
77,284 KB
testcase_12 AC 118 ms
77,956 KB
testcase_13 AC 111 ms
77,272 KB
testcase_14 AC 112 ms
76,952 KB
testcase_15 AC 182 ms
81,700 KB
testcase_16 AC 944 ms
114,592 KB
testcase_17 AC 869 ms
111,704 KB
testcase_18 AC 449 ms
95,100 KB
testcase_19 AC 1,465 ms
138,440 KB
testcase_20 AC 1,516 ms
139,920 KB
testcase_21 AC 575 ms
98,216 KB
testcase_22 AC 1,460 ms
137,776 KB
testcase_23 AC 1,085 ms
126,800 KB
testcase_24 AC 1,045 ms
120,800 KB
testcase_25 AC 1,230 ms
131,972 KB
testcase_26 AC 1,620 ms
149,944 KB
testcase_27 AC 1,180 ms
134,092 KB
testcase_28 AC 1,147 ms
119,576 KB
testcase_29 AC 370 ms
92,752 KB
testcase_30 AC 953 ms
118,840 KB
testcase_31 AC 1,127 ms
131,424 KB
testcase_32 AC 392 ms
86,328 KB
testcase_33 AC 981 ms
123,804 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import*

n,a,b,c=map(int,input().split())
inf=1<<61
dist=[[inf]*2 for i in range(n)]
seen=[[0]*2 for i in range(n)]
hq=[(0,0,0)]

while hq:
  d,i,f=heappop(hq)
  if dist[i][f]<d:
    continue
  if i!=0 or f!=0:
    seen[i][f]=1
  if seen[(i+1)%n][1]==False and d+a+(1-f)*b<dist[(i+1)%n][1]:
    dist[(i+1)%n][1]=d+a+(1-f)*b
    heappush(hq,(d+a+(1-f)*b,(i+1)%n,1))
  if seen[(2*i)%n][0]==False and d+c<dist[(2*i)%n][0] and i!=0:
    dist[(2*i)%n][0]=d+c
    heappush(hq,(d+c,(2*i)%n,0))

for i in dist:
  print(min(i))
0