結果

問題 No.2888 Mamehinata
ユーザー HIcoderHIcoder
提出日時 2024-09-14 09:02:57
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,215 bytes
コンパイル時間 1,487 ms
コンパイル使用メモリ 126,088 KB
実行使用メモリ 17,440 KB
最終ジャッジ日時 2024-09-14 09:03:15
合計ジャッジ時間 18,596 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 WA -
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 WA -
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 72 ms
5,376 KB
testcase_14 AC 145 ms
7,296 KB
testcase_15 WA -
testcase_16 AC 451 ms
13,440 KB
testcase_17 WA -
testcase_18 AC 143 ms
7,072 KB
testcase_19 AC 434 ms
13,296 KB
testcase_20 AC 373 ms
11,676 KB
testcase_21 AC 358 ms
11,420 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 444 ms
14,464 KB
testcase_25 AC 387 ms
13,952 KB
testcase_26 AC 420 ms
13,696 KB
testcase_27 AC 312 ms
11,776 KB
testcase_28 AC 64 ms
5,376 KB
testcase_29 AC 172 ms
7,680 KB
testcase_30 AC 487 ms
14,208 KB
testcase_31 AC 373 ms
12,416 KB
testcase_32 AC 250 ms
9,728 KB
testcase_33 AC 348 ms
11,776 KB
testcase_34 AC 287 ms
10,496 KB
testcase_35 AC 224 ms
9,472 KB
testcase_36 AC 489 ms
15,232 KB
testcase_37 AC 513 ms
15,488 KB
testcase_38 AC 126 ms
6,784 KB
testcase_39 AC 387 ms
13,184 KB
testcase_40 AC 510 ms
15,360 KB
testcase_41 AC 78 ms
5,376 KB
testcase_42 AC 404 ms
13,568 KB
testcase_43 AC 383 ms
14,920 KB
testcase_44 AC 405 ms
15,944 KB
testcase_45 AC 458 ms
17,440 KB
testcase_46 AC 64 ms
5,376 KB
testcase_47 AC 395 ms
15,912 KB
testcase_48 AC 290 ms
11,080 KB
testcase_49 AC 31 ms
5,376 KB
testcase_50 AC 103 ms
8,076 KB
testcase_51 AC 5 ms
5,376 KB
testcase_52 AC 3 ms
5,376 KB
testcase_53 AC 16 ms
5,376 KB
testcase_54 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<string>
#include<queue>
#include<vector>
#include<cassert>
#include<random>
#include<set>
#include<map>
#include<cassert>
#include<unordered_map>
#include<bitset>
#include<numeric>
#include<algorithm>
using namespace std;
typedef long long ll;
const int inf=1<<30;
const ll INF=1LL<<62;
typedef pair<int,int> P;
typedef pair<int,P> PP; 
const ll MOD=998244353;

int main(){
    int N,M;
    cin>>N>>M;
    vector<vector<int>> G(N);
    for(int i=0;i<M;i++){
        int u,v;
        cin>>u>>v;
        u--;v--;
        G[u].push_back(v);
        G[v].push_back(u);
    }

    priority_queue<P,vector<P>,greater<P>> pq;
    vector<int> dist(N,inf);
    pq.push(P{0,0});//距離,頂点

    while(!pq.empty()){
        auto [d,v]=pq.top();
        pq.pop();
        if(dist[v]<=d) continue;
        dist[v]=d;
        for(auto nv:G[v]){
            if(dist[nv]>d+1){
                pq.push(P{d+1,nv});
            }
        }
    }
    vector<int> cnt(N+1,0);//0~N
    for(int i=0;i<N;i++){
        if(dist[i]==inf) continue;
        cnt[dist[i]]++;
    }

    for(int i=2;i<=N;i++){
        cnt[i]+=cnt[i-2];
    }
    for(int i=1;i<=N;i++){
        cout<<cnt[i]<<endl;
    }



    

}
0