結果
問題 | No.812 Change of Class |
ユーザー | paruki |
提出日時 | 2019-04-28 20:30:35 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,090 bytes |
コンパイル時間 | 2,340 ms |
コンパイル使用メモリ | 179,376 KB |
実行使用メモリ | 10,584 KB |
最終ジャッジ日時 | 2024-06-12 20:58:08 |
合計ジャッジ時間 | 7,732 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 4 ms
6,940 KB |
testcase_08 | AC | 3 ms
6,944 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 2 ms
6,944 KB |
testcase_14 | AC | 2 ms
6,940 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | AC | 5 ms
6,940 KB |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | AC | 5 ms
6,940 KB |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | WA | - |
testcase_45 | WA | - |
testcase_46 | WA | - |
testcase_47 | WA | - |
testcase_48 | WA | - |
testcase_49 | WA | - |
testcase_50 | WA | - |
testcase_51 | WA | - |
testcase_52 | WA | - |
testcase_53 | WA | - |
testcase_54 | WA | - |
testcase_55 | AC | 45 ms
8,152 KB |
testcase_56 | AC | 55 ms
9,068 KB |
testcase_57 | AC | 59 ms
9,556 KB |
testcase_58 | AC | 30 ms
6,940 KB |
testcase_59 | AC | 66 ms
10,584 KB |
testcase_60 | AC | 2 ms
6,940 KB |
testcase_61 | WA | - |
testcase_62 | AC | 2 ms
6,944 KB |
ソースコード
#define _USE_MATH_DEFINES #include "bits/stdc++.h" using namespace std; #define FOR(i,j,k) for(int (i)=(j);(i)<(int)(k);++(i)) #define rep(i,j) FOR(i,0,j) #define each(x,y) for(auto &(x):(y)) #define mp make_pair #define MT make_tuple #define all(x) (x).begin(),(x).end() #define debug(x) cout<<#x<<": "<<(x)<<endl #define smax(x,y) (x)=max((x),(y)) #define smin(x,y) (x)=min((x),(y)) #define MEM(x,y) memset((x),(y),sizeof (x)) #define sz(x) (int)(x).size() #define RT return using ll = long long; using pii = pair<int, int>; using vi = vector<int>; using vll = vector<ll>; typedef int Weight; struct Edge { int from, to; Weight wei; Edge(int from_, int to_, Weight wei_) :from(from_), to(to_), wei(wei_) {} }; typedef vector<Edge> Edges; typedef vector<Edges> Graph; const Weight INFW = numeric_limits<Weight>::max(); vector<Weight> bfs(Graph &G, int start) { vector<Weight> res(G.size(), -1); queue<pair<int, Weight> > Q; Q.push(make_pair(start, 0)); while (Q.size()) { auto p = Q.front(); Q.pop(); if (res[p.first] != -1) continue; res[p.first] = p.second; for (auto &e : G[p.first]) Q.push(make_pair(e.to, p.second + 1)); } return res; } void solve() { // Q回BFS // ある組(a, b)を考えたとき、最短経路上の真ん中にいる人が間を取り持つ int N, M; cin >> N >> M; Graph G(N); rep(i, M) { int p, q; cin >> p >> q; --p; --q; G[p].emplace_back(p, q, 1); G[q].emplace_back(q, p, 1); } int Q; cin >> Q; rep(i, Q) { int A; cin >> A; --A; vi d = bfs(G, A); int friends = -1; int day = 0; rep(j, N) { if (d[j] != -1) { friends++; if (d[j] > 1) { smax(day, d[j] / 2); } } } cout << friends << ' ' << day << endl; } } int main() { ios::sync_with_stdio(false); cin.tie(0); cout << fixed << setprecision(15); solve(); return 0; }