結果

問題 No.2638 Initial fare
ユーザー tobbietobbie
提出日時 2024-05-06 14:52:23
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 819 bytes
コンパイル時間 1,947 ms
コンパイル使用メモリ 177,464 KB
実行使用メモリ 80,116 KB
最終ジャッジ日時 2024-05-06 14:52:36
合計ジャッジ時間 11,777 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,752 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 TLE -
testcase_05 TLE -
testcase_06 AC 2 ms
5,376 KB
testcase_07 TLE -
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 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#define rep(i, n) for (int i = 0; i < (int)(n); i++)
using pii = pair<int, int>;

int main() {
  int N;
  cin >> N;
  vector<vector<int>> g(N);
  rep(i, N-1) {
    int u, v;
    cin >> u >> v;
    u--; v--;
    g[u].push_back(v);
    g[v].push_back(u);
  }
  auto dfs = [&](auto dfs, int s, int n, vector<int> &seen) {
    seen.push_back(s);
    if (n == 3)
      return;
    for (int d : g[s]) {
      if (find(seen.begin(), seen.end(), d) != seen.end())
	continue;
      dfs(dfs, d, n+1, seen);
    }
    return;
  };
  set<pii> p;
  rep(i, N) {
    vector<int> seen;
    dfs(dfs, i, 0, seen);
    for (int j : seen) {
      if (j == i) continue;
      if (i < j)
	p.insert({i, j});
      else
	p.insert({j, i});
    }
  }
  cout << (int)p.size() << endl;
  return 0;
}
0