結果

問題 No.1103 Directed Length Sum
ユーザー 👑 CleyLCleyL
提出日時 2022-09-18 21:53:17
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 1,005 ms / 3,000 ms
コード長 719 bytes
コンパイル時間 875 ms
コンパイル使用メモリ 83,756 KB
実行使用メモリ 65,792 KB
最終ジャッジ日時 2024-12-22 01:40:52
合計ジャッジ時間 11,086 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 689 ms
65,792 KB
testcase_03 AC 498 ms
46,600 KB
testcase_04 AC 537 ms
30,456 KB
testcase_05 AC 1,005 ms
50,388 KB
testcase_06 AC 316 ms
20,996 KB
testcase_07 AC 64 ms
7,552 KB
testcase_08 AC 100 ms
9,728 KB
testcase_09 AC 42 ms
6,820 KB
testcase_10 AC 144 ms
12,168 KB
testcase_11 AC 583 ms
32,876 KB
testcase_12 AC 344 ms
21,084 KB
testcase_13 AC 153 ms
12,356 KB
testcase_14 AC 31 ms
6,816 KB
testcase_15 AC 250 ms
17,248 KB
testcase_16 AC 678 ms
36,664 KB
testcase_17 AC 710 ms
38,072 KB
testcase_18 AC 146 ms
12,164 KB
testcase_19 AC 588 ms
33,684 KB
testcase_20 AC 48 ms
6,816 KB
testcase_21 AC 93 ms
9,088 KB
testcase_22 AC 492 ms
28,196 KB
testcase_23 AC 264 ms
18,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <queue>
using namespace std;

const long long MOD = 1000000007;
struct d{
  int i,dep;
};

int main(){
  int n;cin>>n;
  vector<long long> A(n,-1);
  vector<int> C[n];
  for(int i = 0; n-1 > i; i++){
    int a,b;cin>>a>>b;
    A[--b] = --a;
    C[a].push_back(b);
  }
  int f = -1;
  for(int i = 0; n > i; i++){
    if(A[i] == -1)f = i;
  }

  queue<d> B;
  B.push({f,0});
  A[f] = 0;
  while(B.size()){
    auto x = B.front();B.pop();
    for(int i = 0; C[x.i].size() > i; i++){
      A[C[x.i][i]] = x.dep+1;
      B.push({C[x.i][i],x.dep+1});
    } 
  }
  long long ans = 0;
  for(int i = 0; n > i; i++){
    ans += A[i]*(A[i]+1)/2;
  }
  cout << ans%MOD << endl;
  

}
0