結果

問題 No.2146 2 Pows
ユーザー 沙耶花沙耶花
提出日時 2022-12-02 23:00:09
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 415 ms / 3,000 ms
コード長 1,073 bytes
コンパイル時間 4,471 ms
コンパイル使用メモリ 268,368 KB
実行使用メモリ 18,952 KB
最終ジャッジ日時 2024-10-10 01:29:43
合計ジャッジ時間 13,574 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 379 ms
15,364 KB
testcase_06 AC 394 ms
16,520 KB
testcase_07 AC 336 ms
18,488 KB
testcase_08 AC 398 ms
18,828 KB
testcase_09 AC 415 ms
18,952 KB
testcase_10 AC 7 ms
6,820 KB
testcase_11 AC 5 ms
6,816 KB
testcase_12 AC 7 ms
6,820 KB
testcase_13 AC 6 ms
6,820 KB
testcase_14 AC 5 ms
6,816 KB
testcase_15 AC 25 ms
6,816 KB
testcase_16 AC 230 ms
11,608 KB
testcase_17 AC 252 ms
12,188 KB
testcase_18 AC 110 ms
7,552 KB
testcase_19 AC 329 ms
14,244 KB
testcase_20 AC 339 ms
14,716 KB
testcase_21 AC 123 ms
9,092 KB
testcase_22 AC 367 ms
18,608 KB
testcase_23 AC 301 ms
14,668 KB
testcase_24 AC 251 ms
11,856 KB
testcase_25 AC 271 ms
12,732 KB
testcase_26 AC 372 ms
16,088 KB
testcase_27 AC 327 ms
13,724 KB
testcase_28 AC 282 ms
12,388 KB
testcase_29 AC 96 ms
6,816 KB
testcase_30 AC 231 ms
11,244 KB
testcase_31 AC 303 ms
14,116 KB
testcase_32 AC 54 ms
6,820 KB
testcase_33 AC 267 ms
12,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <atcoder/all>
#include <bits/stdc++.h>
using namespace std;
using namespace atcoder;
using mint = modint998244353;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf32 1000000001
#define Inf64 4000000000000000001
using P = pair<long long,pair<int,int>>;

int main(){
	
	
	long long n,a,b,c;
	cin>>n>>a>>b>>c;
	
	vector dis(n,vector<long long>(2,Inf64));
	
	dis[1][1] = a+b;
	priority_queue<P,vector<P>,greater<P>> Q;
	Q.emplace(a+b,make_pair(1,1));
	while(Q.size()>0){
		long long D = Q.top().first;
		int x = Q.top().second.first;
		int y = Q.top().second.second;
		Q.pop();
		if(dis[x][y]!=D)continue;
		{
			int nx = (x+1)%n;
			int ny = y;
			long long nD = D + a;
			if(y==0){
				ny = 1;
				nD += b;
			}
			if(dis[nx][ny]>nD){
				dis[nx][ny] = nD;
				Q.emplace(nD,make_pair(nx,ny));
			}
		}
		
		{
			int nx = (x*2)%n;
			int ny = 0;
			long long nD = D + c;
			if(dis[nx][ny]>nD){
				dis[nx][ny] = nD;
				Q.emplace(nD,make_pair(nx,ny));
			}
		}
		
	}
	
	rep(i,n){
		cout<<min(dis[i][0],dis[i][1])<<endl;
	}
	
	return 0;
}
0