結果

問題 No.1103 Directed Length Sum
ユーザー umezoumezo
提出日時 2020-07-03 23:27:10
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 693 bytes
コンパイル時間 2,992 ms
コンパイル使用メモリ 238,356 KB
実行使用メモリ 303,976 KB
最終ジャッジ日時 2024-09-17 05:02:36
合計ジャッジ時間 15,608 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
69,576 KB
testcase_01 AC 43 ms
69,588 KB
testcase_02 WA -
testcase_03 AC 561 ms
78,012 KB
testcase_04 AC 712 ms
80,132 KB
testcase_05 AC 1,219 ms
87,936 KB
testcase_06 AC 466 ms
76,416 KB
testcase_07 AC 130 ms
71,296 KB
testcase_08 AC 187 ms
72,192 KB
testcase_09 AC 96 ms
70,628 KB
testcase_10 AC 244 ms
73,020 KB
testcase_11 AC 775 ms
81,152 KB
testcase_12 AC 469 ms
76,616 KB
testcase_13 AC 250 ms
73,236 KB
testcase_14 AC 79 ms
70,444 KB
testcase_15 AC 382 ms
75,008 KB
testcase_16 AC 862 ms
82,560 KB
testcase_17 AC 902 ms
83,140 KB
testcase_18 AC 240 ms
73,076 KB
testcase_19 AC 790 ms
81,372 KB
testcase_20 AC 107 ms
70,892 KB
testcase_21 AC 173 ms
71,848 KB
testcase_22 AC 643 ms
79,236 KB
testcase_23 AC 396 ms
75,384 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:40:6: warning: 'root' may be used uninitialized [-Wmaybe-uninitialized]
   40 |   rec(root,0);
      |   ~~~^~~~~~~~
main.cpp:32:7: note: 'root' was declared here
   32 |   int root;
      |       ^~~~

ソースコード

diff #

#define _GLIBCXX_DEBUG
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define ALL(v) v.begin(), v.end()
typedef long long ll;

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

vector<ll> D(1000010);  
vector<vector<ll>> C(1000010);

void rec(int u, int p){
  D[u]=p;
  if(!C[u].empty()){
    for(auto x:C[u]) rec(x,p+1);
  }
}

int main() {
  int n;
  cin>>n;
  
  vector<int> P(1000010);
  
  int a,b;
  rep(i,n){
    cin>>a>>b;
    P[b]=a;
    C[a].push_back(b);
  }
  
  int root;
  for(int i=1;i<=n;i++){
    if(P[i]==0){
      root=i;
      break;
    }
  }
  
  rec(root,0);
    
  ll ans=0;
  for(int i=1;i<=n;i++){
    ans+=D[i]*(D[i]+1)/2;
  }
  
  cout<<ans<<endl;

  return 0;
}
0