結果

問題 No.1465 Archaea
ユーザー gorugo30gorugo30
提出日時 2021-04-02 21:33:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 364 ms / 2,000 ms
コード長 1,042 bytes
コンパイル時間 256 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 114,944 KB
最終ジャッジ日時 2024-06-06 10:26:12
合計ジャッジ時間 4,334 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,480 KB
testcase_01 AC 42 ms
52,736 KB
testcase_02 AC 53 ms
61,184 KB
testcase_03 AC 44 ms
52,992 KB
testcase_04 AC 41 ms
52,352 KB
testcase_05 AC 42 ms
52,480 KB
testcase_06 AC 41 ms
52,864 KB
testcase_07 AC 166 ms
84,968 KB
testcase_08 AC 42 ms
52,992 KB
testcase_09 AC 198 ms
89,712 KB
testcase_10 AC 42 ms
52,352 KB
testcase_11 AC 183 ms
87,568 KB
testcase_12 AC 77 ms
72,832 KB
testcase_13 AC 299 ms
105,216 KB
testcase_14 AC 185 ms
87,924 KB
testcase_15 AC 68 ms
68,864 KB
testcase_16 AC 80 ms
74,752 KB
testcase_17 AC 306 ms
106,604 KB
testcase_18 AC 125 ms
78,388 KB
testcase_19 AC 196 ms
89,540 KB
testcase_20 AC 258 ms
98,340 KB
testcase_21 AC 364 ms
114,944 KB
testcase_22 AC 359 ms
114,816 KB
testcase_23 AC 39 ms
52,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq

class Dijkstra:
    def __init__(self, V, INF = 10 ** 20):
        self.V = V
        self.INF = INF
        self.dist = None
        self.prev = None
        self.adj = [[] for _ in range(V)]
    def add(self, u, v, dist):
        self.adj[u].append((v, dist))
    def run(self, start):
        self.dist = [self.INF] * self.V
        self.prev = [-1] * self.V
        self.dist[start] = 0
        priq = [(0, start)]
        while len(priq):
            d, v = heapq.heappop(priq)
            if self.dist[v] < d:
                continue
            for to, cost in self.adj[v]:
                dd = d + cost
                if self.dist[to] > dd:
                    self.dist[to] = dd
                    self.prev[to] = v
                    heapq.heappush(priq, (dd, to))

N, K = map(int, input().split())
dij = Dijkstra(N + 1)
for i in range(1, N + 1):
    if i * 2 <= N:
        dij.add(i, 2 * i, 1)
    if i + 3 <= N:
        dij.add(i, i + 3, 1)
dij.run(1)

if dij.dist[N] <= K:
    print("YES")
else:
    print("NO")
0