結果

問題 No.2146 2 Pows
ユーザー kotatsugamekotatsugame
提出日時 2022-12-02 23:03:36
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 134 ms / 3,000 ms
コード長 689 bytes
コンパイル時間 701 ms
コンパイル使用メモリ 76,780 KB
実行使用メモリ 12,028 KB
最終ジャッジ日時 2024-10-10 01:32:04
合計ジャッジ時間 5,284 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 1 ms
6,820 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 78 ms
7,560 KB
testcase_06 AC 104 ms
8,772 KB
testcase_07 AC 76 ms
10,888 KB
testcase_08 AC 115 ms
12,028 KB
testcase_09 AC 134 ms
10,760 KB
testcase_10 AC 3 ms
6,820 KB
testcase_11 AC 2 ms
6,816 KB
testcase_12 AC 3 ms
6,816 KB
testcase_13 AC 3 ms
6,820 KB
testcase_14 AC 2 ms
6,820 KB
testcase_15 AC 7 ms
6,816 KB
testcase_16 AC 55 ms
6,816 KB
testcase_17 AC 67 ms
7,668 KB
testcase_18 AC 26 ms
6,820 KB
testcase_19 AC 94 ms
8,576 KB
testcase_20 AC 101 ms
8,104 KB
testcase_21 AC 36 ms
7,728 KB
testcase_22 AC 106 ms
11,832 KB
testcase_23 AC 73 ms
8,052 KB
testcase_24 AC 73 ms
7,992 KB
testcase_25 AC 76 ms
8,128 KB
testcase_26 AC 105 ms
8,492 KB
testcase_27 AC 82 ms
7,180 KB
testcase_28 AC 81 ms
6,820 KB
testcase_29 AC 23 ms
6,816 KB
testcase_30 AC 59 ms
7,748 KB
testcase_31 AC 73 ms
7,344 KB
testcase_32 AC 17 ms
6,820 KB
testcase_33 AC 61 ms
6,928 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:6:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    6 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<queue>
using namespace std;
int N,A,B,C;
long dp[2<<17][2];
main()
{
	cin>>N>>A>>B>>C;
	for(int i=0;i<N;i++)dp[i][0]=dp[i][1]=9e18;
	dp[1][1]=A+B;
	priority_queue<pair<long,pair<int,int> > >Q;
	Q.push(make_pair(-A-B,make_pair(1,1)));
	while(!Q.empty())
	{
		long c=-Q.top().first;
		int i=Q.top().second.first,j=Q.top().second.second;
		Q.pop();
		if(dp[i][j]<c)continue;
		if(dp[i*2%N][0]>c+C)
		{
			dp[i*2%N][0]=c+C;
			Q.push(make_pair(-c-C,make_pair(i*2%N,0)));
		}
		long nc=c+A+(j==0?B:0);
		if(dp[(i+1)%N][1]>nc)
		{
			dp[(i+1)%N][1]=nc;
			Q.push(make_pair(-nc,make_pair((i+1)%N,1)));
		}
	}
	for(int i=0;i<N;i++)cout<<min(dp[i][0],dp[i][1])<<"\n";
}
0