結果

問題 No.2888 Mamehinata
ユーザー Jeroen Op de BeekJeroen Op de Beek
提出日時 2024-09-13 21:25:57
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 1,900 bytes
コンパイル時間 2,511 ms
コンパイル使用メモリ 215,936 KB
実行使用メモリ 23,260 KB
最終ジャッジ日時 2024-09-13 21:26:13
合計ジャッジ時間 13,594 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 RE -
testcase_02 RE -
testcase_03 AC 3 ms
5,376 KB
testcase_04 RE -
testcase_05 AC 3 ms
5,376 KB
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 AC 3 ms
5,376 KB
testcase_11 RE -
testcase_12 RE -
testcase_13 AC 38 ms
7,168 KB
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 AC 57 ms
9,600 KB
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 AC 18 ms
5,888 KB
testcase_29 AC 46 ms
9,472 KB
testcase_30 AC 140 ms
18,476 KB
testcase_31 AC 119 ms
15,872 KB
testcase_32 AC 66 ms
12,288 KB
testcase_33 AC 99 ms
15,104 KB
testcase_34 AC 101 ms
13,312 KB
testcase_35 AC 60 ms
11,904 KB
testcase_36 AC 156 ms
19,840 KB
testcase_37 AC 158 ms
20,352 KB
testcase_38 AC 31 ms
7,936 KB
testcase_39 AC 110 ms
16,232 KB
testcase_40 AC 138 ms
18,944 KB
testcase_41 AC 19 ms
6,016 KB
testcase_42 AC 139 ms
16,768 KB
testcase_43 AC 94 ms
19,960 KB
testcase_44 AC 101 ms
21,448 KB
testcase_45 AC 120 ms
23,260 KB
testcase_46 AC 14 ms
6,016 KB
testcase_47 AC 102 ms
21,080 KB
testcase_48 AC 87 ms
15,652 KB
testcase_49 AC 11 ms
5,376 KB
testcase_50 AC 35 ms
10,368 KB
testcase_51 AC 3 ms
5,376 KB
testcase_52 AC 2 ms
5,376 KB
testcase_53 AC 7 ms
5,376 KB
testcase_54 RE -
権限があれば一括ダウンロードができます

ソースコード

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);
    for(auto& i : d) 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