結果

問題 No.2888 Mamehinata
ユーザー Jeroen Op de BeekJeroen Op de Beek
提出日時 2024-09-13 21:27:56
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 180 ms / 2,000 ms
コード長 1,959 bytes
コンパイル時間 2,728 ms
コンパイル使用メモリ 216,036 KB
実行使用メモリ 23,252 KB
最終ジャッジ日時 2024-09-13 21:28:30
合計ジャッジ時間 9,405 ms
ジャッジサーバーID
(参考情報)
judge2 / 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 AC 2 ms
5,376 KB
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 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 26 ms
7,168 KB
testcase_14 AC 22 ms
8,320 KB
testcase_15 AC 103 ms
15,104 KB
testcase_16 AC 132 ms
17,280 KB
testcase_17 AC 20 ms
9,856 KB
testcase_18 AC 49 ms
9,600 KB
testcase_19 AC 151 ms
17,836 KB
testcase_20 AC 119 ms
15,528 KB
testcase_21 AC 116 ms
15,408 KB
testcase_22 AC 43 ms
12,416 KB
testcase_23 AC 61 ms
15,360 KB
testcase_24 AC 162 ms
18,168 KB
testcase_25 AC 85 ms
17,408 KB
testcase_26 AC 98 ms
17,024 KB
testcase_27 AC 41 ms
13,824 KB
testcase_28 AC 17 ms
5,760 KB
testcase_29 AC 50 ms
9,472 KB
testcase_30 AC 153 ms
18,688 KB
testcase_31 AC 128 ms
16,000 KB
testcase_32 AC 61 ms
12,160 KB
testcase_33 AC 112 ms
15,104 KB
testcase_34 AC 87 ms
13,184 KB
testcase_35 AC 67 ms
11,904 KB
testcase_36 AC 179 ms
19,840 KB
testcase_37 AC 175 ms
20,480 KB
testcase_38 AC 31 ms
7,936 KB
testcase_39 AC 124 ms
16,128 KB
testcase_40 AC 180 ms
19,072 KB
testcase_41 AC 19 ms
6,144 KB
testcase_42 AC 136 ms
16,768 KB
testcase_43 AC 104 ms
19,828 KB
testcase_44 AC 112 ms
21,324 KB
testcase_45 AC 133 ms
23,252 KB
testcase_46 AC 14 ms
6,016 KB
testcase_47 AC 110 ms
20,948 KB
testcase_48 AC 109 ms
15,520 KB
testcase_49 AC 12 ms
5,376 KB
testcase_50 AC 36 ms
10,240 KB
testcase_51 AC 4 ms
5,376 KB
testcase_52 AC 2 ms
5,376 KB
testcase_53 AC 7 ms
5,376 KB
testcase_54 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;
#define all(x) x.begin(),x.end()
template<typename A, typename B> ostream& operator<<(ostream &os, const pair<A, B> &p) { return os << p.first << " " << p.second; }
template<typename T_container, typename T = typename enable_if<!is_same<T_container, string>::value, typename T_container::value_type>::type> ostream& operator<<(ostream &os, const T_container &v) { string sep; for (const T &x : v) os << sep << x, sep = " "; return os; }
#ifdef LOCAL
#include "debug.h"
#else
#define debug(...) 42
#define ASSERT(...) 42
#endif
typedef long long ll;
typedef vector<int> vi;
typedef vector<vi> vvi;
typedef pair<int,int> pi;
const int oo = 1e9;

int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(NULL);
    int n,m; cin >> n >> m;
    vector<array<int,3>> es(m);
    vector<vector<pi>> adj(n);
    for(auto& [u,v,w] : es) {
        cin >> u >> v;
        w=1;
        --u,--v;
        adj[u].push_back({v,w});
        adj[v].push_back({u,w});
    }
    
    auto dijkstra = [&](int s) {
        vector<ll> d(n,oo);
        struct el {
            int at; ll d;
            bool operator<(const el& e) const {
                return d>e.d;
            }
        };
    
    
        priority_queue<el> pq;
        auto push = [&](int at, ll dd) {
            if(d[at]>dd) {
                pq.push({at,dd});
                d[at]=dd;
            }
        };
        push(s,0);
        while(!pq.empty()) {
            auto e = pq.top(); pq.pop();
            if(e.d!=d[e.at]) continue;
            for(auto [to,w] : adj[e.at]) {
                push(to,w+e.d);
            }
        }
        return d;
    };
    auto d = dijkstra(0);
    vi ans(n);
    vi cnt(n+1);
    if(adj[0].size()!=0) {
        for(auto& i : d) if(i<oo) cnt[i]++;
        for(int i=1;i<=n;++i) {
            if(i>=2) cnt[i]+=cnt[i-2];
        }
    }

    cnt.erase(cnt.begin());
    for(auto x : cnt) cout << x << '\n';
    
}
0