結果

問題 No.2638 Initial fare
ユーザー otoshigootoshigo
提出日時 2024-02-19 21:35:12
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 87 ms / 2,000 ms
コード長 872 bytes
コンパイル時間 660 ms
コンパイル使用メモリ 79,584 KB
実行使用メモリ 14,920 KB
最終ジャッジ日時 2024-09-29 01:30:52
合計ジャッジ時間 3,259 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 71 ms
13,736 KB
testcase_05 AC 79 ms
14,352 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 76 ms
14,316 KB
testcase_08 AC 57 ms
14,000 KB
testcase_09 AC 65 ms
14,876 KB
testcase_10 AC 64 ms
14,904 KB
testcase_11 AC 2 ms
6,816 KB
testcase_12 AC 78 ms
14,140 KB
testcase_13 AC 59 ms
13,408 KB
testcase_14 AC 68 ms
14,800 KB
testcase_15 AC 64 ms
14,920 KB
testcase_16 AC 1 ms
6,820 KB
testcase_17 AC 67 ms
14,544 KB
testcase_18 AC 64 ms
14,288 KB
testcase_19 AC 78 ms
14,516 KB
testcase_20 AC 87 ms
14,436 KB
testcase_21 AC 72 ms
14,088 KB
testcase_22 AC 1 ms
6,820 KB
testcase_23 AC 79 ms
13,780 KB
testcase_24 AC 82 ms
14,132 KB
testcase_25 AC 2 ms
6,820 KB
testcase_26 AC 79 ms
14,244 KB
testcase_27 AC 71 ms
14,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<algorithm>
#include<vector>
using namespace std;
using ll=long long;
#define all(v) v.begin(),v.end()
#define rall(v) v.rbegin(),v.rend()
template<class T> bool chmax(T &a, T b){if (a < b){a = b;return true;} else return false;}
template<class T> bool chmin(T &a, T b){if (a > b){a = b;return true;} else return false;}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    int N;
    cin>>N;
    vector<vector<int>>G(N);
    for(int i=0;i<N-1;i++){
        int u,v;
        cin>>u>>v;
        u--;
        v--;
        G[u].push_back(v);
        G[v].push_back(u);
    }
    ll ans=0;
    for(int i=0;i<N;i++){
        int l=G[i].size();
        ans+=l;
        ans+=(ll)2*l*(l-1)/2;
        for(auto x:G[i]){
            int m=G[x].size();
            ans+=(ll)(m-1)*(l-1);
        }
    }
    ans/=2;
    cout<<ans<<"\n";
}
0