結果

問題 No.317 辺の追加
ユーザー 37zigen37zigen
提出日時 2016-03-25 01:08:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,253 ms / 2,000 ms
コード長 1,573 bytes
コンパイル時間 2,307 ms
コンパイル使用メモリ 77,244 KB
実行使用メモリ 69,932 KB
最終ジャッジ日時 2024-10-02 00:38:43
合計ジャッジ時間 38,815 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
54,424 KB
testcase_01 AC 136 ms
54,308 KB
testcase_02 AC 907 ms
68,048 KB
testcase_03 AC 1,077 ms
69,272 KB
testcase_04 AC 859 ms
63,900 KB
testcase_05 AC 1,082 ms
68,700 KB
testcase_06 AC 1,177 ms
69,480 KB
testcase_07 AC 691 ms
59,416 KB
testcase_08 AC 840 ms
64,360 KB
testcase_09 AC 1,012 ms
69,060 KB
testcase_10 AC 1,253 ms
69,132 KB
testcase_11 AC 509 ms
59,296 KB
testcase_12 AC 1,212 ms
69,476 KB
testcase_13 AC 631 ms
59,548 KB
testcase_14 AC 1,031 ms
69,752 KB
testcase_15 AC 1,154 ms
69,528 KB
testcase_16 AC 854 ms
68,160 KB
testcase_17 AC 1,096 ms
69,328 KB
testcase_18 AC 1,198 ms
69,932 KB
testcase_19 AC 1,243 ms
69,584 KB
testcase_20 AC 1,009 ms
68,036 KB
testcase_21 AC 596 ms
61,360 KB
testcase_22 AC 489 ms
59,100 KB
testcase_23 AC 488 ms
59,116 KB
testcase_24 AC 759 ms
68,096 KB
testcase_25 AC 661 ms
63,708 KB
testcase_26 AC 660 ms
63,872 KB
testcase_27 AC 613 ms
61,516 KB
testcase_28 AC 491 ms
59,148 KB
testcase_29 AC 306 ms
59,292 KB
testcase_30 AC 956 ms
69,428 KB
testcase_31 AC 950 ms
69,152 KB
testcase_32 AC 1,072 ms
69,256 KB
testcase_33 AC 1,094 ms
69,676 KB
testcase_34 AC 955 ms
69,344 KB
testcase_35 AC 967 ms
69,608 KB
testcase_36 AC 945 ms
69,300 KB
testcase_37 AC 1,008 ms
69,132 KB
testcase_38 AC 939 ms
69,420 KB
testcase_39 AC 949 ms
69,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder317;
import java.io.PrintWriter;
import java.util.Arrays;
import java.util.Scanner;
public class Main {
	public static void main(String[] args){
		PrintWriter pw=new PrintWriter(System.out);
		Scanner sc=new Scanner(System.in);
		int n=sc.nextInt();
		int m=sc.nextInt();
		DJSet ds=new DJSet(n);
		for(int i=0;i<m;i++){
			ds.union(sc.nextInt()-1,sc.nextInt()-1);
		}
		int[] dp=new int[n+1];
		int[] f=new int[n+1];
		for(int i=0;i<n;i++){
			if(ds.upper[i]<0){
				f[-ds.upper[i]]++;
			}
		}
		Arrays.fill(dp, 999999999);
		dp[0]=0;
		int sum=0;
		for(int i=1;i<=n;i++){
			for(int d=1;f[i]>0;d*=2){
				int x=Math.min(f[i],d);
				f[i]-=x;//辺数iのグラフがf[i]個ある。
				sum+=x*i;
				for(int j=sum;j>=x*i;j--){
					dp[j]=Math.min(dp[j], dp[j-x*i]+x);
				}
				
			}
		}
		for(int i=0;i<=n;i++){
			if(dp[i]>1000000)dp[i]=0;
		}
		for(int i=1;i<=n;i++){
			pw.println(dp[i]-1);
		}
		pw.close();
	}
	public static class DJSet{
		public int[] upper;
		public DJSet(int n){
			upper=new int[n];
			Arrays.fill(upper, -1);
		}
		public int root(int x){
			return upper[x]<0? x:root(upper[x]);
		}
		public boolean equiv(int x,int y){
			return root(x)==root(y);
		}
		public boolean union(int x,int y){
				x=root(x);
				y=root(y);
				if(x!=y){
					if(upper[y]<upper[x]){
						int d=y;
						y=x;
						x=d;
					}
					upper[x]+=upper[y];
					upper[y]=x;
				}
				return x!=y;
		}
		public int size(int x){
			return -upper[root(x)];
		}
		public int count(){
			int ct=0;
			for(int u:upper)
				if(u<0)ct++;
			return ct;
		}
	}
}
0