結果

問題 No.1103 Directed Length Sum
ユーザー umezoumezo
提出日時 2020-07-03 23:32:55
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 715 bytes
コンパイル時間 2,746 ms
コンパイル使用メモリ 235,492 KB
実行使用メモリ 307,880 KB
最終ジャッジ日時 2024-09-17 05:04:20
合計ジャッジ時間 15,978 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
73,520 KB
testcase_01 AC 45 ms
73,524 KB
testcase_02 WA -
testcase_03 AC 563 ms
81,920 KB
testcase_04 AC 708 ms
84,092 KB
testcase_05 AC 1,230 ms
91,688 KB
testcase_06 AC 475 ms
80,324 KB
testcase_07 AC 142 ms
75,136 KB
testcase_08 AC 196 ms
76,072 KB
testcase_09 AC 101 ms
74,608 KB
testcase_10 AC 251 ms
76,928 KB
testcase_11 AC 795 ms
85,044 KB
testcase_12 AC 485 ms
80,484 KB
testcase_13 AC 262 ms
77,132 KB
testcase_14 AC 85 ms
74,352 KB
testcase_15 AC 383 ms
78,876 KB
testcase_16 AC 888 ms
86,384 KB
testcase_17 AC 922 ms
86,948 KB
testcase_18 AC 253 ms
76,928 KB
testcase_19 AC 819 ms
85,300 KB
testcase_20 AC 115 ms
74,752 KB
testcase_21 AC 180 ms
75,776 KB
testcase_22 AC 661 ms
83,200 KB
testcase_23 AC 417 ms
79,232 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)%MOD;
  }
  
  cout<<ans<<endl;

  return 0;
}
0