結果
問題 | No.2888 Mamehinata |
ユーザー | Rubikun |
提出日時 | 2024-09-13 21:24:19 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,659 bytes |
コンパイル時間 | 2,234 ms |
コンパイル使用メモリ | 207,352 KB |
実行使用メモリ | 19,680 KB |
最終ジャッジ日時 | 2024-09-13 21:24:30 |
合計ジャッジ時間 | 8,383 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 6 ms
11,680 KB |
testcase_01 | AC | 6 ms
11,520 KB |
testcase_02 | AC | 7 ms
11,520 KB |
testcase_03 | AC | 7 ms
11,584 KB |
testcase_04 | WA | - |
testcase_05 | AC | 7 ms
11,648 KB |
testcase_06 | AC | 7 ms
11,520 KB |
testcase_07 | AC | 7 ms
11,776 KB |
testcase_08 | AC | 7 ms
11,520 KB |
testcase_09 | AC | 7 ms
11,648 KB |
testcase_10 | AC | 7 ms
11,648 KB |
testcase_11 | WA | - |
testcase_12 | AC | 7 ms
11,520 KB |
testcase_13 | AC | 28 ms
12,928 KB |
testcase_14 | AC | 27 ms
13,056 KB |
testcase_15 | WA | - |
testcase_16 | AC | 106 ms
16,784 KB |
testcase_17 | WA | - |
testcase_18 | AC | 49 ms
13,892 KB |
testcase_19 | AC | 117 ms
16,852 KB |
testcase_20 | AC | 91 ms
16,000 KB |
testcase_21 | AC | 88 ms
15,932 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 104 ms
16,952 KB |
testcase_25 | AC | 83 ms
16,712 KB |
testcase_26 | AC | 79 ms
16,284 KB |
testcase_27 | AC | 40 ms
14,428 KB |
testcase_28 | AC | 17 ms
12,672 KB |
testcase_29 | AC | 41 ms
14,016 KB |
testcase_30 | AC | 105 ms
17,664 KB |
testcase_31 | AC | 84 ms
16,640 KB |
testcase_32 | AC | 52 ms
15,220 KB |
testcase_33 | AC | 78 ms
16,256 KB |
testcase_34 | AC | 61 ms
15,488 KB |
testcase_35 | AC | 53 ms
14,976 KB |
testcase_36 | AC | 120 ms
18,176 KB |
testcase_37 | AC | 144 ms
18,392 KB |
testcase_38 | AC | 37 ms
13,440 KB |
testcase_39 | AC | 102 ms
17,024 KB |
testcase_40 | AC | 124 ms
18,296 KB |
testcase_41 | AC | 20 ms
12,828 KB |
testcase_42 | AC | 105 ms
17,224 KB |
testcase_43 | AC | 78 ms
18,020 KB |
testcase_44 | AC | 78 ms
18,656 KB |
testcase_45 | AC | 90 ms
19,680 KB |
testcase_46 | AC | 15 ms
12,692 KB |
testcase_47 | AC | 82 ms
18,528 KB |
testcase_48 | AC | 68 ms
16,168 KB |
testcase_49 | AC | 14 ms
12,032 KB |
testcase_50 | AC | 34 ms
14,080 KB |
testcase_51 | AC | 7 ms
11,776 KB |
testcase_52 | AC | 6 ms
11,648 KB |
testcase_53 | AC | 10 ms
11,984 KB |
testcase_54 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return true; } return false; } template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return true; } return false; } #define vi vector<int> #define vl vector<ll> #define vii vector<pair<int,int>> #define vll vector<pair<ll,ll>> #define vvi vector<vector<int>> #define vvl vector<vector<ll>> #define vvii vector<vector<pair<int,int>>> #define vvll vector<vector<pair<ll,ll>>> #define vst vector<string> #define pii pair<int,int> #define pll pair<ll,ll> #define pb push_back #define all(x) (x).begin(),(x).end() #define mkunique(x) sort(all(x));(x).erase(unique(all(x)),(x).end()) #define fi first #define se second #define mp make_pair #define si(x) int(x.size()) const int mod=998244353,MAX=300005,INF=15<<26; int dis[MAX]; vector<int> G[MAX]; int main(){ std::ifstream in("text.txt"); std::cin.rdbuf(in.rdbuf()); cin.tie(0); ios::sync_with_stdio(false); int N,M;cin>>N>>M; for(int i=0;i<M;i++){ int a,b;cin>>a>>b;a--;b--; G[a].pb(b); G[b].pb(a); } for(int i=1;i<MAX;i++) dis[i]=INF; queue<int> Q; Q.push(0); while(!Q.empty()){ int u=Q.front();Q.pop(); for(int to:G[u]) if(chmin(dis[to],dis[u]+1)) Q.push(to); } vi ans(N+3); for(int i=0;i<N;i++){ if(dis[i]!=INF) ans[dis[i]]++; } int a=0,b=0; for(int i=0;i<=N;i++){ if(i&1){ b+=ans[i]; if(i) cout<<b<<"\n"; }else{ a+=ans[i]; if(i) cout<<a<<"\n"; } } }