結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 3 ms
5,376 KB
testcase_11 WA -
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 25 ms
7,168 KB
testcase_14 AC 21 ms
8,320 KB
testcase_15 WA -
testcase_16 AC 122 ms
17,280 KB
testcase_17 WA -
testcase_18 AC 47 ms
9,728 KB
testcase_19 AC 133 ms
17,836 KB
testcase_20 AC 103 ms
15,532 KB
testcase_21 AC 102 ms
15,280 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 122 ms
18,296 KB
testcase_25 AC 71 ms
17,408 KB
testcase_26 AC 76 ms
17,016 KB
testcase_27 AC 44 ms
13,784 KB
testcase_28 AC 16 ms
5,760 KB
testcase_29 AC 40 ms
9,472 KB
testcase_30 AC 125 ms
18,560 KB
testcase_31 AC 90 ms
16,000 KB
testcase_32 AC 66 ms
12,288 KB
testcase_33 AC 100 ms
15,232 KB
testcase_34 AC 68 ms
13,148 KB
testcase_35 AC 57 ms
11,776 KB
testcase_36 AC 136 ms
19,840 KB
testcase_37 AC 146 ms
20,180 KB
testcase_38 AC 29 ms
7,808 KB
testcase_39 AC 121 ms
16,128 KB
testcase_40 AC 150 ms
19,072 KB
testcase_41 AC 19 ms
6,272 KB
testcase_42 AC 114 ms
16,708 KB
testcase_43 AC 120 ms
19,960 KB
testcase_44 AC 116 ms
21,448 KB
testcase_45 AC 117 ms
23,256 KB
testcase_46 AC 15 ms
6,144 KB
testcase_47 AC 105 ms
21,080 KB
testcase_48 AC 83 ms
15,520 KB
testcase_49 AC 11 ms
5,376 KB
testcase_50 AC 34 ms
10,368 KB
testcase_51 AC 3 ms
5,376 KB
testcase_52 AC 2 ms
5,376 KB
testcase_53 AC 6 ms
5,376 KB
testcase_54 WA -
権限があれば一括ダウンロードができます

ソースコード

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) 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