結果

問題 No.1103 Directed Length Sum
ユーザー umezoumezo
提出日時 2020-07-03 23:23:36
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 696 bytes
コンパイル時間 2,784 ms
コンパイル使用メモリ 234,812 KB
実行使用メモリ 300,092 KB
最終ジャッジ日時 2024-09-17 04:59:46
合計ジャッジ時間 14,702 ms
ジャッジサーバーID
(参考情報)
judge6 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
65,664 KB
testcase_01 AC 40 ms
65,664 KB
testcase_02 WA -
testcase_03 AC 559 ms
70,136 KB
testcase_04 AC 664 ms
74,776 KB
testcase_05 AC 1,155 ms
81,512 KB
testcase_06 AC 433 ms
71,676 KB
testcase_07 AC 115 ms
67,084 KB
testcase_08 AC 168 ms
67,984 KB
testcase_09 AC 86 ms
66,628 KB
testcase_10 AC 224 ms
68,736 KB
testcase_11 AC 729 ms
75,648 KB
testcase_12 AC 439 ms
71,680 KB
testcase_13 AC 232 ms
68,864 KB
testcase_14 AC 74 ms
66,432 KB
testcase_15 AC 349 ms
70,400 KB
testcase_16 AC 818 ms
76,820 KB
testcase_17 AC 839 ms
77,312 KB
testcase_18 AC 225 ms
68,620 KB
testcase_19 AC 749 ms
75,868 KB
testcase_20 AC 96 ms
66,816 KB
testcase_21 AC 154 ms
67,712 KB
testcase_22 AC 610 ms
73,984 KB
testcase_23 AC 369 ms
70,648 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<int> D(1000010);  
vector<vector<int>> 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);
    
  int ans=0;
  for(int i=1;i<=n;i++){
    ans+=D[i]*(D[i]+1)/2;
  }
  
  cout<<ans<<endl;

  return 0;
}
0