結果

問題 No.994 ばらばらコイン
ユーザー Mishan5055Mishan5055
提出日時 2020-03-27 17:47:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 729 ms / 2,000 ms
コード長 2,102 bytes
コンパイル時間 2,238 ms
コンパイル使用メモリ 77,560 KB
実行使用メモリ 67,188 KB
最終ジャッジ日時 2024-06-10 16:26:00
合計ジャッジ時間 11,977 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
54,040 KB
testcase_01 AC 147 ms
54,164 KB
testcase_02 AC 651 ms
66,756 KB
testcase_03 AC 729 ms
66,888 KB
testcase_04 AC 727 ms
66,432 KB
testcase_05 AC 526 ms
59,652 KB
testcase_06 AC 676 ms
67,012 KB
testcase_07 AC 685 ms
67,188 KB
testcase_08 AC 610 ms
63,364 KB
testcase_09 AC 701 ms
65,900 KB
testcase_10 AC 556 ms
64,216 KB
testcase_11 AC 566 ms
64,796 KB
testcase_12 AC 699 ms
65,788 KB
testcase_13 AC 122 ms
54,200 KB
testcase_14 AC 118 ms
53,904 KB
testcase_15 AC 124 ms
53,860 KB
testcase_16 AC 123 ms
53,708 KB
testcase_17 AC 118 ms
54,096 KB
testcase_18 AC 117 ms
54,136 KB
testcase_19 AC 118 ms
54,028 KB
testcase_20 AC 118 ms
53,848 KB
testcase_21 AC 111 ms
53,356 KB
testcase_22 AC 106 ms
52,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main{
    static int INF=100000007;
    static class edge implements Comparable<edge>{
        int from;
        int to;
        
        void edge(int from,int to){
            this.from=from;
            this.to=to;
        }
        
        public int compareTo(edge e){
            return this.from-e.from;
        }
    }
    
    public static void main(String[] args){
        Scanner sc=new Scanner(System.in);
        int N=sc.nextInt();
        int K=sc.nextInt();
        edge[] graph=new edge[N-1];
        int[] dist=new int[N];
        
        for(int i=0;i<N;i++){
            dist[i]=INF;
        }
        
        dist[0]=0;
        
        for(int i=0;i<N-1;i++){
            edge e=new edge();
            e.edge(sc.nextInt()-1,sc.nextInt()-1);
            graph[i]=e;
        }
        
        Arrays.sort(graph);
        
        boolean change=false;
        
        while(true){
            change=false;
            for(int i=0;i<N-1;i++){
                int start=graph[i].from;
                int end=graph[i].to;
                
                if(dist[start]!=INF&&dist[end]>dist[start]+1){
                    dist[end]=dist[start]+1;
                    change=true;
                }
            }
            
            if(!change){
                break;
            }
        }
        
        int count=0;
        
        for(int i=0;i<N;i++){
            if(dist[i]!=INF){
                count++;
            }
        }
        
        if(count<K){
            System.out.println("-1");
            return;
        }
        
        Arrays.sort(dist);
        int ans=0;
        int current=0;
        boolean check=false;
        
        for(int i=0;i<K;i++){
            current=dist[i];
            if(dist[i]==current&&check){
                ans++;
            }
            if(dist[i]==current&&!check){
                check=true;
            }
            if(dist[i]!=current){
                current=dist[i];
                check=false;
            }
        }
        
        System.out.println(ans);
    }
}
0