結果
問題 | No.2740 Old Maid |
ユーザー | PNJ |
提出日時 | 2024-04-20 14:25:01 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,408 bytes |
コンパイル時間 | 226 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 66,048 KB |
最終ジャッジ日時 | 2024-10-12 09:57:50 |
合計ジャッジ時間 | 6,499 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | RE | - |
testcase_36 | RE | - |
testcase_37 | RE | - |
testcase_38 | RE | - |
testcase_39 | RE | - |
testcase_40 | RE | - |
testcase_41 | RE | - |
testcase_42 | RE | - |
testcase_43 | RE | - |
testcase_44 | RE | - |
testcase_45 | RE | - |
testcase_46 | RE | - |
testcase_47 | RE | - |
testcase_48 | RE | - |
testcase_49 | RE | - |
testcase_50 | RE | - |
testcase_51 | RE | - |
testcase_52 | RE | - |
testcase_53 | RE | - |
testcase_54 | RE | - |
testcase_55 | RE | - |
testcase_56 | RE | - |
testcase_57 | RE | - |
testcase_58 | RE | - |
testcase_59 | RE | - |
testcase_60 | RE | - |
testcase_61 | RE | - |
testcase_62 | RE | - |
testcase_63 | RE | - |
testcase_64 | RE | - |
ソースコード
import heapq inf = 1 << 63 def dijkstra(s, n, edge): dist = [inf]*n dist[s] = 0 hq = [[0,s]] heapq.heapify(hq) while len(hq) > 0: d,i = heapq.heappop(hq) if dist[i] < d: continue for j,d_1 in edge[i]: if dist[j] > (dist[i] + d_1): dist[j] = dist[i] + d_1 heapq.heappush(hq, [dist[j],j]) return dist N,A,B,C = map(int,input().split()) fact = [1] for i in range(1,N+1): f = fact[-1]*i f %= N fact.append(f) P = [2,3,5,7,11,13,17,19] G = [[] for i in range(2*N)] for x in range(1,N): G[N+x].append((0,C)) G[N].append((0,0)) for x in range(1,2*N): G[x].append(((x+1) % (2*N),A)) for x in range(2,N): f = 0 for k in P: # 素数乗だけでいい if f == 0: xx = pow(x,k) if xx >= N: f = 1 xx %= N else: xx = pow(x,k,N) b = pow(B,k) if b >= 2*A + 4*C: break if xx % N == 0: G[x].append((0,b)) G[x+N].append((0,b)) break if f: G[x].append((N+xx,b)) else: G[x].append((xx,b)) G[x+N].append((N + xx,b)) if fact[x] == 0: G[x].append((0,C)) continue if x >= 9: G[x].append((N + fact[x],C)) else: f = 1 for i in range(1,x+1): f *= i if f > N: G[x].append((N + fact[x],C)) else: G[x].append((fact[x],C)) dist = dijkstra(1, 2*N, G) print(dist[0])