結果

問題 No.1103 Directed Length Sum
ユーザー umezoumezo
提出日時 2020-07-03 23:47:58
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,142 ms / 3,000 ms
コード長 713 bytes
コンパイル時間 2,843 ms
コンパイル使用メモリ 236,836 KB
実行使用メモリ 307,880 KB
最終ジャッジ日時 2024-09-17 05:07:20
合計ジャッジ時間 14,251 ms
ジャッジサーバーID
(参考情報)
judge1 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
73,552 KB
testcase_01 AC 41 ms
73,496 KB
testcase_02 AC 971 ms
307,880 KB
testcase_03 AC 537 ms
83,484 KB
testcase_04 AC 673 ms
83,988 KB
testcase_05 AC 1,142 ms
91,800 KB
testcase_06 AC 419 ms
80,344 KB
testcase_07 AC 120 ms
75,192 KB
testcase_08 AC 167 ms
76,008 KB
testcase_09 AC 84 ms
74,564 KB
testcase_10 AC 204 ms
76,940 KB
testcase_11 AC 717 ms
85,124 KB
testcase_12 AC 435 ms
80,572 KB
testcase_13 AC 228 ms
77,056 KB
testcase_14 AC 75 ms
74,424 KB
testcase_15 AC 348 ms
78,944 KB
testcase_16 AC 804 ms
86,560 KB
testcase_17 AC 836 ms
87,084 KB
testcase_18 AC 221 ms
77,028 KB
testcase_19 AC 733 ms
85,336 KB
testcase_20 AC 99 ms
74,896 KB
testcase_21 AC 157 ms
75,800 KB
testcase_22 AC 605 ms
83,192 KB
testcase_23 AC 370 ms
79,304 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:42:6: warning: 'root' may be used uninitialized [-Wmaybe-uninitialized]
   42 |   rec(root,0);
      |   ~~~^~~~~~~~
main.cpp:34:6: note: 'root' was declared here
   34 |   ll 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;

const int MOD=1e9+7;

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

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

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

  return 0;
}
0