結果
問題 | No.2744 Power! or +1 |
ユーザー | PNJ |
提出日時 | 2024-04-20 14:25:14 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,408 bytes |
コンパイル時間 | 193 ms |
コンパイル使用メモリ | 82,380 KB |
実行使用メモリ | 387,048 KB |
最終ジャッジ日時 | 2024-10-12 09:58:15 |
合計ジャッジ時間 | 8,759 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | AC | 491 ms
127,200 KB |
testcase_02 | AC | 328 ms
85,780 KB |
testcase_03 | AC | 173 ms
87,680 KB |
testcase_04 | AC | 315 ms
96,128 KB |
testcase_05 | AC | 2,532 ms
266,100 KB |
testcase_06 | AC | 916 ms
159,788 KB |
testcase_07 | AC | 42 ms
52,608 KB |
testcase_08 | AC | 727 ms
150,368 KB |
testcase_09 | AC | 61 ms
63,360 KB |
testcase_10 | AC | 73 ms
387,048 KB |
ソースコード
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])