結果

問題 No.2638 Initial fare
ユーザー SSRSSSRS
提出日時 2024-02-19 21:21:47
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 157 ms / 2,000 ms
コード長 556 bytes
コンパイル時間 1,962 ms
コンパイル使用メモリ 204,588 KB
実行使用メモリ 15,008 KB
最終ジャッジ日時 2024-09-29 01:18:40
合計ジャッジ時間 5,956 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,820 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 145 ms
13,924 KB
testcase_05 AC 157 ms
14,356 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 137 ms
14,296 KB
testcase_08 AC 124 ms
13,976 KB
testcase_09 AC 129 ms
14,852 KB
testcase_10 AC 124 ms
15,008 KB
testcase_11 AC 2 ms
6,816 KB
testcase_12 AC 135 ms
14,180 KB
testcase_13 AC 113 ms
13,512 KB
testcase_14 AC 134 ms
14,772 KB
testcase_15 AC 128 ms
14,944 KB
testcase_16 AC 2 ms
6,816 KB
testcase_17 AC 127 ms
14,552 KB
testcase_18 AC 137 ms
14,356 KB
testcase_19 AC 143 ms
14,564 KB
testcase_20 AC 141 ms
14,448 KB
testcase_21 AC 137 ms
14,108 KB
testcase_22 AC 2 ms
6,820 KB
testcase_23 AC 138 ms
13,804 KB
testcase_24 AC 145 ms
14,260 KB
testcase_25 AC 2 ms
6,816 KB
testcase_26 AC 151 ms
14,244 KB
testcase_27 AC 140 ms
14,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(){
  int N;
  cin >> N;
  vector<vector<int>> E(N);
  for (int i = 0; i < N - 1; i++){
    int u, v;
    cin >> u >> v;
    u--;
    v--;
    E[u].push_back(v);
    E[v].push_back(u);
  }
  long long ans = 0;
  ans += N - 1;
  for (int i = 0; i < N; i++){
    ans += (long long) E[i].size() * (E[i].size() - 1) / 2;
  }
  for (int i = 0; i < N; i++){
    for (int j : E[i]){
      if (i < j){
        ans += (long long) (E[i].size() - 1) * (E[j].size() - 1);
      }
    }
  }
  cout << ans << endl;
}
0