結果

問題 No.1507 Road Blocked
ユーザー どららどらら
提出日時 2021-05-14 23:23:09
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 114 ms / 2,000 ms
コード長 1,091 bytes
コンパイル時間 3,817 ms
コンパイル使用メモリ 232,900 KB
実行使用メモリ 21,984 KB
最終ジャッジ日時 2024-10-02 05:08:04
合計ジャッジ時間 8,422 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,888 KB
testcase_01 AC 4 ms
5,888 KB
testcase_02 AC 4 ms
6,016 KB
testcase_03 AC 84 ms
21,984 KB
testcase_04 AC 107 ms
11,124 KB
testcase_05 AC 108 ms
10,984 KB
testcase_06 AC 110 ms
11,132 KB
testcase_07 AC 110 ms
10,996 KB
testcase_08 AC 106 ms
11,128 KB
testcase_09 AC 105 ms
11,128 KB
testcase_10 AC 108 ms
11,112 KB
testcase_11 AC 106 ms
11,080 KB
testcase_12 AC 110 ms
10,992 KB
testcase_13 AC 108 ms
10,988 KB
testcase_14 AC 107 ms
10,992 KB
testcase_15 AC 109 ms
11,128 KB
testcase_16 AC 103 ms
10,988 KB
testcase_17 AC 106 ms
11,120 KB
testcase_18 AC 104 ms
11,112 KB
testcase_19 AC 104 ms
11,120 KB
testcase_20 AC 106 ms
11,120 KB
testcase_21 AC 108 ms
11,104 KB
testcase_22 AC 105 ms
11,132 KB
testcase_23 AC 104 ms
10,996 KB
testcase_24 AC 100 ms
10,992 KB
testcase_25 AC 106 ms
11,092 KB
testcase_26 AC 105 ms
11,108 KB
testcase_27 AC 108 ms
10,980 KB
testcase_28 AC 107 ms
11,120 KB
testcase_29 AC 108 ms
11,120 KB
testcase_30 AC 114 ms
11,120 KB
testcase_31 AC 108 ms
10,988 KB
testcase_32 AC 109 ms
11,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
#define REP(i,a,n) for(int i=(a); i<(int)(n); i++)
#define rep(i,n) REP(i,0,n)
#define FOR(it,c) for(__typeof((c).begin()) it=(c).begin(); it!=(c).end(); ++it)
#define ALLOF(c) (c).begin(), (c).end()
typedef long long ll;
typedef unsigned long long ull;
//using mint = modint1000000007;
using mint = modint998244353;

int N;
vector<int> G[100005];
vector<pair<ll,ll>> edges;

int dfs(int v, int p){
  int ret = 1;
  rep(i,G[v].size()){
    if(G[v][i] == p) continue;
    ll res = dfs(G[v][i], v);

    edges.emplace_back(res, N-res);

    ret += res;
  }
  
  return ret;
}
  
int main(){
  cin >> N;
  rep(i,N-1){
    int a, b;
    cin >> a >> b;
    a--;
    b--;
    G[a].push_back(b);
    G[b].push_back(a);
  }
  
  dfs(0,-1);

  mint ret1(0), ret2(1);
  ret2 *= N*(ll)(N-1)/2;
  ret2 *= (N-1);
  rep(i,edges.size()){
    ll x = edges[i].first;
    ll y = edges[i].second;
    
    ret1 += x*(x-1)/2 + y*(y-1)/2;
  }

  mint ret = ret1 / ret2;

  cout << ret.val() << endl;
  
  return 0;
}

0