結果

問題 No.1103 Directed Length Sum
ユーザー Moss_LocalMoss_Local
提出日時 2020-07-27 19:06:19
言語 C++17
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 686 ms / 3,000 ms
コード長 2,063 bytes
コンパイル時間 2,984 ms
コンパイル使用メモリ 202,616 KB
実行使用メモリ 135,812 KB
最終ジャッジ日時 2023-09-11 05:57:50
合計ジャッジ時間 10,127 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,384 KB
testcase_01 AC 1 ms
4,384 KB
testcase_02 AC 348 ms
135,812 KB
testcase_03 AC 186 ms
50,172 KB
testcase_04 AC 376 ms
35,500 KB
testcase_05 AC 686 ms
59,316 KB
testcase_06 AC 221 ms
24,204 KB
testcase_07 AC 38 ms
8,008 KB
testcase_08 AC 66 ms
10,752 KB
testcase_09 AC 22 ms
6,360 KB
testcase_10 AC 98 ms
13,852 KB
testcase_11 AC 418 ms
38,352 KB
testcase_12 AC 230 ms
24,476 KB
testcase_13 AC 97 ms
13,996 KB
testcase_14 AC 16 ms
5,428 KB
testcase_15 AC 169 ms
19,808 KB
testcase_16 AC 465 ms
43,028 KB
testcase_17 AC 490 ms
44,496 KB
testcase_18 AC 95 ms
13,488 KB
testcase_19 AC 425 ms
39,516 KB
testcase_20 AC 29 ms
7,072 KB
testcase_21 AC 60 ms
10,160 KB
testcase_22 AC 341 ms
32,740 KB
testcase_23 AC 190 ms
20,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define int ll
#define ll long long

#define I32_MAX 2147483647
#define I64_MAX 9223372036854775807LL
#define I64_MAX2 1223372036854775807LL
#define INF I64_MAX2
#define MOD 1000000007
// #define MOD 998244353 
#define MEM_SIZE 100010
#define DEBUG_OUT true
#define ALL(x) (x).begin(), (x).end()

template<typename T> void DEBUG(T e){if(DEBUG_OUT == false)return; std::cout << e <<" ";}
template<typename T> void DEBUG(const std::vector<T>& v){if(DEBUG_OUT == false)return;for(const auto& e : v){std::cout<< e << " "; } std::cout << std::endl;}
template<typename T> void DEBUG(const std::vector<std::vector<T> >& vv){if(DEBUG_OUT == false)return;for(const auto& v : vv){ DEBUG(v); } }
template<class T,class... Ts> void DEBUG(T d, Ts... e){if(DEBUG_OUT == false)return;DEBUG(d);DEBUG(e...);}
template <class T> void corner(bool flg, T hoge) {if (flg) {cout << hoge << endl; abort();}}
template< typename T1, typename T2 > inline bool chmax(T1 &a, T2 b) { return a < b && (a = b, true); }
template< typename T1, typename T2 > inline bool chmin(T1 &a, T2 b) { return a > b && (a = b, true); }

void DFS(int V,int P, int D,vector<vector<int> > &GRAPH ,vector<int> & data)
{
  if(P != -1)
  {
    data[V] = data[P] + D;
    data[V] %= MOD;
  }
  for (auto &&nv : GRAPH[V])
  {
    DFS(nv,V,D+1,GRAPH,data);
  }
  return;
}
void solve(void)
{
  int N,M;
  cin>>N;
  M = N -1;
  vector<vector<int> > GRAPH (N);
  vector<int> P(N,0);
  for (int i = 0; i < M; i++)
  {
    int A,B;
    cin>>A>>B;
    A--;B--;
    GRAPH[A].push_back(B);
    P[B]++;
  }
  int root = -1;
  for (int i = 0; i < N; i++)
  {
    if(P[i] == 0)root = i;
  }
  vector<int> data (N,0);
  DFS(root,-1,0,GRAPH,data);
  int res = 0;
  for (auto &&x :  data)
  {
    res += x;
    res %= MOD;
  }
  // DEBUG(data);
  cout<<res<<endl;
  

  
  
  
  return;
}
int32_t main(int32_t argc, const char *argv[])
{
  std::ios::sync_with_stdio(false);
  std::cin.tie(0);

  std::cout << std::fixed;
  std::cout << std::setprecision(11);
  solve();

  return 0;
}
0