結果

問題 No.317 辺の追加
ユーザー piyoko_212piyoko_212
提出日時 2015-12-21 20:49:49
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 250 ms / 2,000 ms
コード長 1,603 bytes
コンパイル時間 595 ms
コンパイル使用メモリ 47,692 KB
実行使用メモリ 190,080 KB
最終ジャッジ日時 2024-09-18 18:07:48
合計ジャッジ時間 8,558 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 88 ms
97,280 KB
testcase_03 AC 85 ms
81,408 KB
testcase_04 AC 105 ms
109,056 KB
testcase_05 AC 78 ms
57,856 KB
testcase_06 AC 94 ms
82,816 KB
testcase_07 AC 45 ms
30,208 KB
testcase_08 AC 180 ms
123,648 KB
testcase_09 AC 105 ms
123,136 KB
testcase_10 AC 116 ms
123,136 KB
testcase_11 AC 95 ms
123,264 KB
testcase_12 AC 116 ms
123,136 KB
testcase_13 AC 107 ms
123,136 KB
testcase_14 AC 106 ms
123,136 KB
testcase_15 AC 114 ms
123,136 KB
testcase_16 AC 107 ms
123,136 KB
testcase_17 AC 108 ms
123,136 KB
testcase_18 AC 113 ms
123,008 KB
testcase_19 AC 116 ms
123,264 KB
testcase_20 AC 120 ms
123,136 KB
testcase_21 AC 59 ms
65,920 KB
testcase_22 AC 43 ms
37,504 KB
testcase_23 AC 44 ms
37,632 KB
testcase_24 AC 87 ms
110,976 KB
testcase_25 AC 69 ms
80,384 KB
testcase_26 AC 71 ms
84,096 KB
testcase_27 AC 61 ms
67,456 KB
testcase_28 AC 45 ms
38,272 KB
testcase_29 AC 15 ms
12,160 KB
testcase_30 AC 250 ms
183,680 KB
testcase_31 AC 232 ms
188,160 KB
testcase_32 AC 237 ms
189,056 KB
testcase_33 AC 228 ms
187,776 KB
testcase_34 AC 234 ms
187,520 KB
testcase_35 AC 226 ms
188,288 KB
testcase_36 AC 236 ms
187,776 KB
testcase_37 AC 231 ms
188,032 KB
testcase_38 AC 242 ms
186,624 KB
testcase_39 AC 226 ms
190,080 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:20:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   20 |         int a,b;scanf("%d%d",&a,&b);
      |                 ~~~~~^~~~~~~~~~~~~~
main.cpp:23:30: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   23 |                 int s,t;scanf("%d%d",&s,&t);s--;t--;r(s,t);
      |                         ~~~~~^~~~~~~~~~~~~~

ソースコード

diff #

#include<stdio.h>
#include<algorithm>
#include<deque>
using namespace std;
int p[110000];
int q(int a){
	if(p[a]<0)return a;
	return p[a]=q(p[a]);
}
void r(int a,int b){
	a=q(a);b=q(b);if(a==b)return;p[a]+=p[b];p[b]=a;
}
int SQ=300;
int cnt[1000];
int u[210000];
int v[21000];
int dp[310][111000];
int dp2[410][111000];
int main(){
	int a,b;scanf("%d%d",&a,&b);
	for(int i=0;i<a;i++)p[i]=-1;
	for(int i=0;i<b;i++){
		int s,t;scanf("%d%d",&s,&t);s--;t--;r(s,t);
	}
	int sz=0;
	for(int i=0;i<a;i++){
		if(p[i]<0)u[sz++]=-p[i];
	}
	int vs=0;
	std::sort(u,u+sz);
	for(int i=0;i<sz;i++){
		if(u[i]<=SQ)cnt[u[i]]++;
		else v[vs++]=u[i];
	}
	for(int i=0;i<=SQ;i++)for(int j=0;j<=a;j++)dp[i][j]=99999999;
	dp[0][0]=0;
	for(int i=1;i<=SQ;i++){
		if(cnt[i]==0){
			for(int j=0;j<=a;j++){
				dp[i][j]=dp[i-1][j];
			}continue;
		}
		int lim=cnt[i];
		for(int j=0;j<i;j++){
			deque<pair<int,int> > Q;
			for(int k=j;k<=a;k+=i){
				if(dp[i-1][k]<9999999){
					while(Q.size()&&dp[i-1][k]-k/i<Q.back().first){
						Q.pop_back();
					}
					Q.push_back(make_pair(dp[i-1][k]-k/i,k/i));
				}
				if(Q.size()){
					dp[i][k]=Q.front().first+k/i;
				}
				while(Q.size()&&Q.front().second==k/i-lim){
					Q.pop_front();
				}
			}
		}
	}
	for(int i=0;i<=vs;i++)for(int j=0;j<=a;j++)dp2[i][j]=99999999;
	for(int i=0;i<=a;i++)dp2[0][i]=dp[SQ][i];
	for(int i=0;i<vs;i++){
		for(int j=0;j<=a;j++){
			dp2[i+1][j]=min(dp2[i+1][j],dp2[i][j]);
			if(j+v[i]<=a)dp2[i+1][j+v[i]]=min(dp2[i+1][j+v[i]],dp2[i][j]+1);
		}
	}
	for(int i=1;i<=a;i++){
		if(dp2[vs][i]>999999)printf("-1\n");
		else printf("%d\n",dp2[vs][i]-1);
	}
}
0