結果

問題 No.2638 Initial fare
ユーザー yuyu_5510yuyu_5510
提出日時 2024-02-19 22:39:56
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 164 ms / 2,000 ms
コード長 850 bytes
コンパイル時間 1,612 ms
コンパイル使用メモリ 173,644 KB
実行使用メモリ 16,672 KB
最終ジャッジ日時 2024-09-29 02:31:45
合計ジャッジ時間 5,376 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,820 KB
testcase_01 AC 1 ms
6,820 KB
testcase_02 AC 1 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 145 ms
15,260 KB
testcase_05 AC 154 ms
15,952 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 145 ms
15,828 KB
testcase_08 AC 123 ms
15,384 KB
testcase_09 AC 133 ms
16,384 KB
testcase_10 AC 135 ms
16,672 KB
testcase_11 AC 1 ms
6,816 KB
testcase_12 AC 147 ms
15,804 KB
testcase_13 AC 117 ms
14,788 KB
testcase_14 AC 138 ms
16,308 KB
testcase_15 AC 130 ms
16,564 KB
testcase_16 AC 2 ms
6,820 KB
testcase_17 AC 135 ms
16,036 KB
testcase_18 AC 131 ms
15,720 KB
testcase_19 AC 148 ms
16,076 KB
testcase_20 AC 141 ms
15,988 KB
testcase_21 AC 143 ms
15,608 KB
testcase_22 AC 2 ms
6,816 KB
testcase_23 AC 147 ms
15,304 KB
testcase_24 AC 151 ms
15,776 KB
testcase_25 AC 2 ms
6,816 KB
testcase_26 AC 154 ms
15,740 KB
testcase_27 AC 164 ms
15,636 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>

using namespace std;
int main(){
    long long 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);
    }

    vector<long long> around(n);
    for(int i = 0;i < n;i++){
        for(auto to : g[i]){
            around[i] += g[to].size();
        }
    }

    long long ans = 0;
    for(int i = 0;i < n;i++){
        for(auto to : g[i]){
            ans += (long long) (g[i].size() - 1) * (g[to].size() - 1);
        }
    }
    ans /= 2;

    for(int i = 0;i < n;i++){
        ans += ((long long) g[i].size()) * (g[i].size() - 1) / 2;
    }

    long long add = 0;
    for(int i = 0;i < n;i++){
        add += (long long)g[i].size();
    }
    ans += add / 2;

    cout << ans << endl;
}
0