結果
問題 | No.1782 ManyCoins |
ユーザー | chineristAC |
提出日時 | 2021-12-11 00:26:09 |
言語 | PyPy3 (7.3.15) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,488 bytes |
コンパイル時間 | 221 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 852,608 KB |
最終ジャッジ日時 | 2024-07-18 21:09:48 |
合計ジャッジ時間 | 18,172 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 52 ms
55,680 KB |
testcase_01 | AC | 95 ms
83,456 KB |
testcase_02 | AC | 53 ms
55,680 KB |
testcase_03 | AC | 53 ms
55,936 KB |
testcase_04 | AC | 46 ms
56,064 KB |
testcase_05 | AC | 53 ms
56,064 KB |
testcase_06 | AC | 52 ms
56,192 KB |
testcase_07 | AC | 51 ms
56,064 KB |
testcase_08 | AC | 51 ms
55,936 KB |
testcase_09 | AC | 51 ms
55,936 KB |
testcase_10 | AC | 51 ms
55,936 KB |
testcase_11 | AC | 45 ms
55,680 KB |
testcase_12 | AC | 46 ms
56,064 KB |
testcase_13 | AC | 604 ms
205,056 KB |
testcase_14 | AC | 310 ms
138,624 KB |
testcase_15 | AC | 321 ms
133,504 KB |
testcase_16 | AC | 685 ms
233,216 KB |
testcase_17 | AC | 839 ms
276,480 KB |
testcase_18 | AC | 679 ms
240,768 KB |
testcase_19 | AC | 59 ms
70,400 KB |
testcase_20 | AC | 341 ms
148,352 KB |
testcase_21 | AC | 225 ms
115,460 KB |
testcase_22 | AC | 441 ms
196,568 KB |
testcase_23 | AC | 1,402 ms
435,752 KB |
testcase_24 | AC | 447 ms
282,240 KB |
testcase_25 | AC | 126 ms
84,608 KB |
testcase_26 | AC | 848 ms
266,112 KB |
testcase_27 | AC | 127 ms
84,992 KB |
testcase_28 | AC | 437 ms
282,496 KB |
testcase_29 | AC | 754 ms
370,304 KB |
testcase_30 | AC | 1,008 ms
457,216 KB |
testcase_31 | MLE | - |
testcase_32 | TLE | - |
testcase_33 | MLE | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
testcase_48 | -- | - |
testcase_49 | -- | - |
testcase_50 | -- | - |
ソースコード
class Dijkstra(): class Edge(): def __init__(self, _to, _cost): self.to = _to self.cost = _cost def __init__(self, V): self.G = [[] for i in range(V)] self._E = 0 self._V = V @property def E(self): return self._E @property def V(self): return self._V def add_edge(self, _from, _to, _cost): self.G[_from].append(self.Edge(_to, _cost)) self._E += 1 def shortest_path(self, s): import heapq que = [] d = [10**15] * self.V d[s] = 0 heapq.heappush(que, (0, s)) while len(que) != 0: cost, v = heapq.heappop(que) if d[v] < cost: continue for i in range(len(self.G[v])): e = self.G[v][i] if d[e.to] > d[v] + e.cost: d[e.to] = d[v] + e.cost heapq.heappush(que, (d[e.to], e.to)) return d import sys,random,bisect from collections import deque,defaultdict from heapq import heapify,heappop,heappush from itertools import permutations from math import log,gcd input = lambda :sys.stdin.readline() mi = lambda :map(int,input().split()) li = lambda :list(mi()) N,L = mi() W = li() m = min(W) numbers = Dijkstra(m) for r in range(m): for w in W: numbers.add_edge(r,(r+w)%m,w) D = numbers.shortest_path(0) res = 0 for r in range(m): if D[r] <= L: res += (L-D[r])//m + 1 print(res-1)