結果

問題 No.2744 Power! or +1
ユーザー 👑 kmjpkmjp
提出日時 2024-04-22 23:24:11
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,577 bytes
コンパイル時間 2,054 ms
コンパイル使用メモリ 200,860 KB
実行使用メモリ 11,176 KB
最終ジャッジ日時 2024-04-22 23:24:18
合計ジャッジ時間 2,849 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
11,176 KB
testcase_01 AC 24 ms
9,940 KB
testcase_02 AC 5 ms
6,940 KB
testcase_03 AC 10 ms
6,940 KB
testcase_04 AC 6 ms
6,944 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 56 ms
10,888 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;
}
0