QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#413573#7895. Graph Partitioning 2grass8cow#WA 27ms14308kbC++171.2kb2024-05-17 19:10:582024-05-17 19:10:59

Judging History

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

  • [2024-05-17 19:10:59]
  • 评测
  • 测评结果:WA
  • 用时:27ms
  • 内存:14308kb
  • [2024-05-17 19:10:58]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;
int n,m;
const int mod=1e9+7;
vector<int>g[201000];
#define pi pair<int,int>
#define fi first
#define se second
#define pb push_back
vector<pi>e[200100];
int vis[201000],z[200100];
void dfs(int x,int f){
    vector<pi>ex;
    ex.clear();ex.pb({1,1});
    for(int v:g[x])if(v!=f){
        dfs(v,x);vector<int>P;
        for(pi a:ex)for(pi b:e[v]){
            int h=a.fi+b.fi;
            if(h>m+1)continue;
            if(!vis[h])vis[h]=1,P.pb(h);
            (z[h]+=1ll*a.se*b.se%mod)%=mod;
        }
        ex.clear();
        for(int i:P)vis[i]=0,ex.pb({i,z[i]}),z[i]=0;
    }
    int t0=0;
    for(pi o:ex)if(o.fi==m||o.fi==m+1)(t0+=o.se)%=mod;
    if(t0){
        bool fl=0;
        for(pi &o:ex)if(!o.fi){fl=1,(o.se+=t0)%=mod;break;}
        if(!fl)ex.pb({0,t0});
    }
    e[x]=ex;
}
void sol(){
    scanf("%d%d",&n,&m);for(int i=1;i<=n;i++)g[i].clear();
    for(int i=1,u,v;i<n;i++)scanf("%d%d",&u,&v),g[u].pb(v),g[v].pb(u);
    dfs(1,0);
    for(pi z:e[1])if(z.fi==0){printf("%d\n",z.se);return;}
    puts("0");
}
int main(){
    int T;scanf("%d",&T);while(T--)sol();
    return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 0ms
memory: 13480kb

input:

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

output:

2
1

result:

ok 2 lines

Test #2:

score: -100
Wrong Answer
time: 27ms
memory: 14308kb

input:

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

output:

0
3
112
0
1
0
1
0
0
0
1
0
1
0
0
1
0
140
0
0
0
814
1
6
1
1
2
2
0
612
0
1
0
0
0
1
1
0
0
121
4536
0
0
1718
0
0
1
0
444
1
1908
1813
3
74
0
1
0
46
0
0
0
0
0
0
0
0
0
1
0
1
1
1
239
0
0
0
1
0
0
0
1
0
1
0
0
1
1
0
0
0
1
0
0
0
48
0
2
0
0
0
1
364
0
206
0
0
76
0
1
0
0
2
0
1
2
0
0
1
0
0
4
0
1
1
0
0
1
1
1
0
0
1
1
...

result:

wrong answer 5004th lines differ - expected: '224400650', found: '910039701'