結果

問題 No.2146 2 Pows
ユーザー sotanishysotanishy
提出日時 2022-12-03 00:40:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 960 ms / 3,000 ms
コード長 795 bytes
コンパイル時間 549 ms
コンパイル使用メモリ 82,132 KB
実行使用メモリ 173,384 KB
最終ジャッジ日時 2024-10-10 03:01:56
合計ジャッジ時間 19,238 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,108 KB
testcase_01 AC 40 ms
54,388 KB
testcase_02 AC 40 ms
53,092 KB
testcase_03 AC 39 ms
53,488 KB
testcase_04 AC 39 ms
53,444 KB
testcase_05 AC 689 ms
163,208 KB
testcase_06 AC 894 ms
170,120 KB
testcase_07 AC 522 ms
173,268 KB
testcase_08 AC 872 ms
173,384 KB
testcase_09 AC 960 ms
173,316 KB
testcase_10 AC 106 ms
77,488 KB
testcase_11 AC 114 ms
77,488 KB
testcase_12 AC 120 ms
77,692 KB
testcase_13 AC 107 ms
77,064 KB
testcase_14 AC 112 ms
77,036 KB
testcase_15 AC 121 ms
81,444 KB
testcase_16 AC 538 ms
134,352 KB
testcase_17 AC 520 ms
136,952 KB
testcase_18 AC 277 ms
103,144 KB
testcase_19 AC 739 ms
152,948 KB
testcase_20 AC 793 ms
157,208 KB
testcase_21 AC 376 ms
106,736 KB
testcase_22 AC 875 ms
162,600 KB
testcase_23 AC 704 ms
150,360 KB
testcase_24 AC 614 ms
136,708 KB
testcase_25 AC 708 ms
144,824 KB
testcase_26 AC 881 ms
166,796 KB
testcase_27 AC 711 ms
153,504 KB
testcase_28 AC 670 ms
139,136 KB
testcase_29 AC 270 ms
100,128 KB
testcase_30 AC 587 ms
131,744 KB
testcase_31 AC 628 ms
152,532 KB
testcase_32 AC 261 ms
88,240 KB
testcase_33 AC 579 ms
141,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappush, heappop
import sys
input = sys.stdin.readline

def dijkstra(G, s):

    INF = 10**18
    dist = [INF] * len(G)
    dist[s] = 0
    pq = [(0, s)]
    while pq:
        d, v = heappop(pq)
        if d > dist[v]:
            continue
        for u, weight in G[v]:
            nd = d + weight
            if dist[u] > nd:
                dist[u] = nd
                heappush(pq, (nd, u))
    return dist

N, A, B, C = map(int, input().split())
dist = [10**18] * (2*N)
G = [[] for _ in range(2*N)]
for i in range(N):
    G[i].append((2*i%N, C))
    G[N+i].append((2*i%N, C))
    G[i].append((N+(i+1)%N, A+B))
    G[N+i].append((N+(i+1)%N, A))
dist = dijkstra(G, N+1)
ans = [10**18] * N
for i in range(N):
    ans[i] = min(dist[i], dist[N+i]) + A+B
print(*ans, sep="\n")
0