結果

問題 No.1103 Directed Length Sum
ユーザー kmjpkmjp
提出日時 2020-07-03 23:43:22
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,509 ms / 3,000 ms
コード長 1,262 bytes
コンパイル時間 2,295 ms
コンパイル使用メモリ 207,252 KB
実行使用メモリ 129,152 KB
最終ジャッジ日時 2024-09-17 05:05:15
合計ジャッジ時間 14,666 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 22 ms
50,688 KB
testcase_01 AC 22 ms
50,816 KB
testcase_02 AC 401 ms
129,152 KB
testcase_03 AC 282 ms
101,452 KB
testcase_04 AC 767 ms
87,296 KB
testcase_05 AC 1,509 ms
114,304 KB
testcase_06 AC 463 ms
74,464 KB
testcase_07 AC 81 ms
56,576 KB
testcase_08 AC 129 ms
59,648 KB
testcase_09 AC 54 ms
54,528 KB
testcase_10 AC 200 ms
62,848 KB
testcase_11 AC 870 ms
90,684 KB
testcase_12 AC 482 ms
74,752 KB
testcase_13 AC 207 ms
63,232 KB
testcase_14 AC 45 ms
53,504 KB
testcase_15 AC 347 ms
69,632 KB
testcase_16 AC 1,010 ms
95,744 KB
testcase_17 AC 1,070 ms
97,408 KB
testcase_18 AC 201 ms
62,848 KB
testcase_19 AC 905 ms
91,776 KB
testcase_20 AC 63 ms
55,424 KB
testcase_21 AC 119 ms
58,752 KB
testcase_22 AC 719 ms
83,968 KB
testcase_23 AC 369 ms
70,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#undef _P
#define _P(...) (void)printf(__VA_ARGS__)
#define FOR(x,to) for(x=0;x<(to);x++)
#define FORR(x,arr) for(auto& x:arr)
#define ITR(x,c) for(__typeof(c.begin()) x=c.begin();x!=c.end();x++)
#define ALL(a) (a.begin()),(a.end())
#define ZERO(a) memset(a,0,sizeof(a))
#define MINUS(a) memset(a,0xff,sizeof(a))
//-------------------------------------------------------

int N;
vector<int> E[2][1010101];
int in[2][1010101];
int C[2][1010101];
const ll mo=1000000007;

void solve() {
	int i,j,k,l,r,x,y; string s;
	
	cin>>N;
	FOR(i,N-1) {
		cin>>x>>y;
		x--,y--;
		E[0][x].push_back(y);
		E[1][y].push_back(x);
		in[0][y]++;
		in[1][x]++;
	}
	FOR(i,2) {
		queue<int> Q;
		FOR(j,N) if(in[i][j]==0) Q.push(j);
		while(Q.size()) {
			x=Q.front();
			Q.pop();
			C[i][x]++;
			FORR(e,E[i][x]) {
				C[i][e]+=C[i][x];
				in[i][e]--;
				if(in[i][e]==0) Q.push(e);
			}
		}
	}
	ll ret=0;
	FOR(i,N) FORR(e,E[0][i]) ret+=1LL*C[0][i]*C[1][e]%mo;
	cout<<ret%mo<<endl;
}


int main(int argc,char** argv){
	string s;int i;
	if(argc==1) ios::sync_with_stdio(false), cin.tie(0);
	FOR(i,argc-1) s+=argv[i+1],s+='\n'; FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin);
	cout.tie(0); solve(); return 0;
}
0