結果
問題 | No.2744 Power! or +1 |
ユーザー | kmjp |
提出日時 | 2024-04-22 23:24:11 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,577 bytes |
コンパイル時間 | 2,389 ms |
コンパイル使用メモリ | 208,984 KB |
実行使用メモリ | 10,136 KB |
最終ジャッジ日時 | 2024-10-14 23:14:43 |
合計ジャッジ時間 | 3,427 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 65 ms
9,728 KB |
testcase_01 | AC | 24 ms
7,680 KB |
testcase_02 | AC | 6 ms
5,248 KB |
testcase_03 | AC | 12 ms
5,248 KB |
testcase_04 | AC | 6 ms
5,248 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | AC | 59 ms
9,728 KB |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | AC | 2 ms
5,248 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef signed long long ll; #define _P(...) (void)printf(__VA_ARGS__) #define FOR(x,to) for(x=0;x<(to);x++) #define FORR(x,arr) for(auto& x:arr) #define FORR2(x,y,arr) for(auto& [x,y]:arr) #define ALL(a) (a.begin()),(a.end()) #define ZERO(a) memset(a,0,sizeof(a)) #define MINUS(a) memset(a,0xff,sizeof(a)) template<class T> bool chmax(T &a, const T &b) { if(a<b){a=b;return 1;}return 0;} template<class T> bool chmin(T &a, const T &b) { if(a>b){a=b;return 1;}return 0;} //------------------------------------------------------- int N,A,B,C; ll F[402020],G[404040]; ll dp[404040]; void solve() { int i,j,k,l,r,x,y; string s; cin>>N>>A>>B>>C; F[1]=1; for(i=2;i<=2*N;i++) { if(i<N) { F[i]=F[i-1]*i; if(F[i]>=N) F[i]=F[i]%N+N; } else { F[i]=N; } dp[i]=1LL<<60; } priority_queue<pair<ll,int>> Q; Q.push({0,1}); while(Q.size()) { ll co=-Q.top().first; int cur=Q.top().second; Q.pop(); if(dp[cur]!=co) continue; x=cur+1; if(x==2*N) x=N; if(chmin(dp[x],co+A)) Q.push({-dp[x],x}); x=F[cur]; if(chmin(dp[x],co+C)) Q.push({-dp[x],x}); if(cur!=1) { ll v=1,c=1; for(i=1;i<=20;i++) { v=v*cur; c=c*B; if(c>1LL*A*N) break; if(v>=2*N) v=v%N+N; if(chmin(dp[v],co+c)) Q.push({-dp[v],v}); if(v>=N) break; } } } cout<<dp[N]<<endl; } int main(int argc,char** argv){ string s;int i; if(argc==1) ios::sync_with_stdio(false), cin.tie(0); FOR(i,argc-1) s+=argv[i+1],s+='\n'; FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin); cout.tie(0); solve(); return 0; }