QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#517624#8325. 重塑时光kymmykym0 1ms3692kbC++141.2kb2024-08-13 12:46:592024-08-13 12:46:59

Judging History

你现在查看的是最新测评结果

  • [2024-08-13 12:46:59]
  • 评测
  • 测评结果:0
  • 用时:1ms
  • 内存:3692kb
  • [2024-08-13 12:46:59]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;
#define int long long
const int mod = 1'000'000'007;
const int maxn=20;
int n,m,k;
int par[maxn]; 
vector<int>adj[maxn];
vector<int>tadj[maxn];
int in[maxn];
int sz[maxn];
int F[maxn];
int col[maxn];
bool bad=0;
void check(int x){
	if(col[x] == 2){
		bad=1;
		return;
	}
	if(col[x] == 1)return;
	col[x]=2;
	for(auto v:adj[x]){
		check(v);
	}
	col[x]=1;
}
	
void pre(int x){
	sz[x]=1;
	for(auto v:adj[x]){
		pre(v);
		sz[x]+=sz[v];
	}
}
int qexp(int a, int b){
	int res=1;
	while(b){
		if(b&1)res=res*a%mod;
		b>>=1;
		a=a*a%mod;
	}
	return res;
}
int inv(int x){
	return qexp(x,mod-2);
}
int dfs(int x){
	int N = sz[x];
	int res=1;
	for(auto v:adj[x]){
		res=(res*dfs(v))%mod;
	}
	int ways=F[N-1];
	for(auto v:adj[x]){
		ways=(ways*inv(F[sz[v]]))%mod;
	}
	cerr<<x<<":"<<res<<" "<<ways<<endl;
	return res*ways%mod;
}
int32_t main(){
	F[0]=1;
	for(int i=1;i<maxn;i++){
		F[i]=F[i-1]*i%mod;
	}
	cin>>n>>m>>k;
	for(int i=1;i<=m;i++){
		int a,b;cin>>a>>b;
		adj[a].push_back(b);
	}
	for(int i=1;i<=n;i++){
		adj[0].push_back(i);
	}
	int rt=0;
	check(rt);
	if(bad){
		cout<<0;exit(0);
	}
	pre(rt);
	cout<<dfs(rt)*inv(F[n+1])%mod;
}

Details

Tip: Click on the bar to expand more detailed information

Pretests


Final Tests

Test #1:

score: 0
Wrong Answer
time: 0ms
memory: 3532kb

input:

3 2 0
1 2
1 3

output:

666666673

result:

wrong answer 1st lines differ - expected: '333333336', found: '666666673'

Test #2:

score: 0
Wrong Answer
time: 1ms
memory: 3640kb

input:

5 7 5
1 4
2 3
1 2
4 5
2 5
2 4
1 5

output:

470051570

result:

wrong answer 1st lines differ - expected: '895039689', found: '470051570'

Test #3:

score: 0
Wrong Answer
time: 1ms
memory: 3532kb

input:

13 12 13
1 2
1 3
1 4
1 5
1 6
1 7
1 8
1 9
1 10
1 11
1 12
1 13

output:

716982648

result:

wrong answer 1st lines differ - expected: '76923078', found: '716982648'

Test #4:

score: 0
Wrong Answer
time: 1ms
memory: 3688kb

input:

14 13 14
1 2
1 3
1 4
1 5
1 6
1 7
1 8
1 9
1 10
1 11
1 12
1 13
1 14

output:

558670358

result:

wrong answer 1st lines differ - expected: '535714290', found: '558670358'

Test #5:

score: 0
Wrong Answer
time: 1ms
memory: 3628kb

input:

14 13 0
2 9
1 2
1 3
3 8
6 11
2 7
1 5
5 12
2 13
3 14
3 10
3 6
2 4

output:

0

result:

wrong answer 1st lines differ - expected: '700595243', found: '0'

Test #6:

score: 0
Wrong Answer
time: 1ms
memory: 3684kb

input:

14 13 14
9 11
2 9
5 10
4 6
10 13
2 3
2 7
4 12
2 4
3 8
7 14
3 5
1 2

output:

0

result:

wrong answer 1st lines differ - expected: '465070080', found: '0'

Test #7:

score: 0
Wrong Answer
time: 0ms
memory: 3692kb

input:

13 0 13

output:

71428572

result:

wrong answer 1st lines differ - expected: '1', found: '71428572'

Test #8:

score: 0
Runtime Error

input:

14 91 14
3 4
2 10
3 10
1 13
6 8
5 6
10 13
7 8
4 9
4 7
3 7
13 14
2 12
1 3
6 9
9 14
1 10
2 9
7 11
9 11
3 12
8 10
4 13
5 9
11 12
5 14
8 12
8 13
5 13
1 5
6 11
9 13
2 5
1 14
7 14
4 14
3 5
5 11
6 12
1 2
7 10
1 4
1 8
6 10
3 8
6 13
10 14
7 12
10 11
2 13
8 11
11 13
6 7
10 12
3 14
4 5
1 6
2 14
5 10
8 14
4 8
1...

output:


result:


Test #9:

score: 0
Wrong Answer
time: 1ms
memory: 3616kb

input:

9 15 9
1 2
3 5
2 8
4 8
1 4
2 5
2 7
4 5
1 9
6 8
6 9
1 3
3 7
5 9
5 8

output:

0

result:

wrong answer 1st lines differ - expected: '426526937', found: '0'

Test #10:

score: 0
Wrong Answer
time: 1ms
memory: 3672kb

input:

9 14 9
1 2
1 3
1 4
1 5
1 6
1 7
1 8
1 9
4 5
6 8
4 7
6 7
3 8
4 6

output:

0

result:

wrong answer 1st lines differ - expected: '214820829', found: '0'

Test #11:

score: 0
Runtime Error

input:

13 68 0
1 2
1 3
1 4
1 5
1 6
1 7
1 8
1 9
1 10
1 11
1 12
1 13
2 5
2 6
2 7
2 8
2 9
2 10
2 11
2 12
2 13
3 4
3 5
3 6
3 7
3 8
3 9
3 10
3 11
3 12
3 13
4 5
4 6
4 7
4 8
4 9
4 10
4 11
4 12
4 13
5 6
5 7
5 8
5 9
5 10
5 11
5 12
5 13
6 7
6 8
6 9
6 10
6 11
6 12
6 13
7 8
7 10
7 11
7 12
7 13
8 13
9 10
9 11
9 12
9 13...

output:


result:


Test #12:

score: 0
Wrong Answer
time: 0ms
memory: 3684kb

input:

13 39 13
1 2
1 3
1 4
1 5
1 6
1 7
1 8
1 9
1 10
1 11
1 12
1 13
3 4
3 5
3 6
3 7
3 8
3 9
3 10
3 11
3 12
3 13
4 8
4 9
4 10
4 12
4 13
5 6
5 7
5 10
5 11
5 13
6 7
6 11
6 13
8 9
8 12
8 13
11 13

output:

0

result:

wrong answer 1st lines differ - expected: '361557272', found: '0'

Test #13:

score: 0
Wrong Answer
time: 1ms
memory: 3532kb

input:

14 11 14
2 13
4 11
4 14
5 14
6 9
6 14
7 11
9 14
10 12
10 14
12 14

output:

988223114

result:

wrong answer 1st lines differ - expected: '696132576', found: '988223114'

Test #14:

score: 0
Wrong Answer
time: 0ms
memory: 3668kb

input:

14 46 14
1 2
1 3
1 4
1 5
1 6
1 7
1 8
1 9
1 10
1 11
1 12
1 13
1 14
2 9
2 10
2 11
2 13
2 14
3 4
3 6
3 10
3 11
3 12
3 13
3 14
4 6
4 10
4 11
4 12
4 13
4 14
5 7
5 8
5 9
5 11
5 13
5 14
7 8
7 9
7 14
10 11
10 13
10 14
11 13
11 14
13 14

output:

0

result:

wrong answer 1st lines differ - expected: '258614192', found: '0'

Test #15:

score: 0
Runtime Error

input:

14 70 14
1 2
1 3
1 4
1 5
1 6
1 7
1 8
1 9
1 10
1 11
1 12
1 13
1 14
2 3
2 4
2 5
2 7
2 8
2 9
2 10
2 11
2 12
2 13
2 14
3 11
3 13
3 14
4 5
4 7
4 8
4 10
4 11
4 12
4 13
4 14
5 7
5 8
5 10
5 12
5 13
5 14
6 7
6 8
6 9
6 10
6 11
6 12
6 13
6 14
7 8
7 10
7 12
7 13
7 14
8 10
8 12
8 13
8 14
9 11
9 12
9 13
9 14
10 1...

output:


result:


Test #16:

score: 0
Runtime Error

input:

14 69 14
1 4
1 5
1 6
1 7
1 8
1 9
1 10
1 11
1 12
1 13
1 14
2 3
2 5
2 6
2 7
2 9
2 10
2 11
2 12
2 13
2 14
3 5
3 6
3 7
3 9
3 10
3 11
3 12
3 13
3 14
4 7
4 8
4 9
4 10
4 11
4 12
4 13
4 14
5 6
5 7
5 9
5 10
5 11
5 12
5 13
5 14
6 7
6 9
6 10
6 11
6 12
6 13
6 14
7 9
7 10
7 11
7 12
7 13
7 14
8 12
8 13
8 14
9 10
...

output:


result:


Test #17:

score: 0
Wrong Answer
time: 1ms
memory: 3560kb

input:

14 15 14
1 2
1 3
1 4
1 5
1 6
1 7
1 8
1 9
1 10
1 11
1 12
1 13
1 14
4 6
5 9

output:

858677291

result:

wrong answer 1st lines differ - expected: '263013541', found: '858677291'

Test #18:

score: 0
Wrong Answer
time: 1ms
memory: 3612kb

input:

15 17 15
1 2
1 3
1 4
1 5
1 6
1 7
1 8
1 9
1 10
1 11
1 12
1 13
1 14
1 15
3 13
3 15
13 15

output:

0

result:

wrong answer 1st lines differ - expected: '963180835', found: '0'

Test #19:

score: 0
Wrong Answer
time: 1ms
memory: 3552kb

input:

15 17 15
1 2
1 3
1 4
1 5
1 6
1 7
1 12
1 15
7 12
7 15
8 15
9 15
10 15
11 15
12 15
13 15
14 15

output:

0

result:

wrong answer 1st lines differ - expected: '722208430', found: '0'

Test #20:

score: 0
Wrong Answer
time: 1ms
memory: 3628kb

input:

15 16 15
1 2
1 3
1 10
2 10
3 10
4 5
4 6
4 7
4 8
4 9
4 10
4 11
4 12
4 13
4 14
4 15

output:

498037188

result:

wrong answer 1st lines differ - expected: '560801339', found: '498037188'