結果

問題 No.317 辺の追加
ユーザー 37zigen37zigen
提出日時 2016-03-25 01:04:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,723 ms / 2,000 ms
コード長 1,494 bytes
コンパイル時間 2,502 ms
コンパイル使用メモリ 77,952 KB
実行使用メモリ 70,780 KB
最終ジャッジ日時 2024-10-02 00:20:26
合計ジャッジ時間 55,233 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 146 ms
54,012 KB
testcase_01 AC 144 ms
54,100 KB
testcase_02 AC 1,310 ms
69,400 KB
testcase_03 AC 1,400 ms
70,084 KB
testcase_04 AC 1,330 ms
68,696 KB
testcase_05 AC 1,313 ms
69,768 KB
testcase_06 AC 1,495 ms
70,108 KB
testcase_07 AC 873 ms
63,872 KB
testcase_08 AC 1,432 ms
69,964 KB
testcase_09 AC 1,500 ms
70,596 KB
testcase_10 AC 1,668 ms
70,116 KB
testcase_11 AC 944 ms
67,240 KB
testcase_12 AC 1,723 ms
70,244 KB
testcase_13 AC 1,113 ms
67,636 KB
testcase_14 AC 1,603 ms
70,692 KB
testcase_15 AC 1,656 ms
70,740 KB
testcase_16 AC 1,448 ms
68,944 KB
testcase_17 AC 1,576 ms
70,780 KB
testcase_18 AC 1,542 ms
70,144 KB
testcase_19 AC 1,655 ms
70,036 KB
testcase_20 AC 1,502 ms
69,268 KB
testcase_21 AC 916 ms
69,544 KB
testcase_22 AC 675 ms
63,124 KB
testcase_23 AC 699 ms
63,772 KB
testcase_24 AC 1,227 ms
69,900 KB
testcase_25 AC 1,027 ms
69,496 KB
testcase_26 AC 1,076 ms
69,432 KB
testcase_27 AC 935 ms
69,560 KB
testcase_28 AC 658 ms
63,860 KB
testcase_29 AC 385 ms
59,420 KB
testcase_30 AC 1,447 ms
69,924 KB
testcase_31 AC 1,470 ms
69,920 KB
testcase_32 AC 1,545 ms
70,104 KB
testcase_33 AC 1,625 ms
69,840 KB
testcase_34 AC 1,468 ms
70,036 KB
testcase_35 AC 1,447 ms
69,964 KB
testcase_36 AC 1,511 ms
70,096 KB
testcase_37 AC 1,630 ms
70,076 KB
testcase_38 AC 1,487 ms
70,044 KB
testcase_39 AC 1,483 ms
70,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder317;
import java.util.Arrays;
import java.util.Scanner;
public class Main {
	public static void main(String[] args){

		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++){
			System.out.println(dp[i]-1);
		}
	}
	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