結果
問題 | No.2638 Initial fare |
ユーザー | twooimp2 |
提出日時 | 2024-02-19 22:37:06 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,020 bytes |
コンパイル時間 | 6,657 ms |
コンパイル使用メモリ | 321,608 KB |
実行使用メモリ | 120,784 KB |
最終ジャッジ日時 | 2024-09-29 02:27:19 |
合計ジャッジ時間 | 10,471 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,640 KB |
testcase_01 | AC | 3 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 4 ms
6,816 KB |
testcase_04 | TLE | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
ソースコード
#pragma GCC target("avx2") #pragma GCC optimize("O3") #pragma GCC optimize("unroll-loops") #include<bits/stdc++.h> #include<atcoder/all> using namespace std; using namespace atcoder; using ll=long long; using P=pair<ll,ll>; void IO(){ ios::sync_with_stdio(false); std::cin.tie(nullptr); } int main(){ IO(); ll n; cin>>n; vector<vector<ll>> G(n); for(ll i=0;i<n-1;i++){ ll u,v; cin>>u>>v; u--; v--; G[u].push_back(v); G[v].push_back(u); } set<P> st; for(ll i=0;i<n;i++){ map<ll,ll> dist; map<ll,bool> seen; seen[i]=true; queue<ll> que; que.push(i); vector<ll> used; while(que.size()){ ll q=que.front(); que.pop(); used.push_back(q); for(ll u:G[q]){ if(!seen[u]){ dist[u]=dist[q]+1; if(dist[u]<=3){ que.push(u); } } } } for(ll u:used){ if(i!=u){ st.insert(P(u,i)); st.insert(P(i,u)); } } } cout<<st.size()/2<<endl; }