QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#464512 | #7895. Graph Partitioning 2 | Andyqian7 | TL | 2324ms | 332900kb | C++14 | 2.8kb | 2024-07-06 10:47:48 | 2024-07-06 10:47:48 |
Judging History
answer
#include <bits/stdc++.h>
#define pb push_back
using namespace std;
const int MAX = 3e5 + 10, mod = 998244353;
int T, n, k, sz[MAX], cnt[MAX];
vector<int> nei[MAX], sons[MAX], dp[MAX];
unordered_map<int, int> dp2[MAX];
void getsz(int s)
{
sz[s] = 1;
for (int son : nei[s])
{
if (sz[son])
continue;
sons[s].pb(son);
getsz(son);
sz[s] += sz[son];
}
}
void dfs(int s)
{
dp[s].resize(2);
dp[s][1] = 1;
int cnt1 = 0, cnt2 = 0;
for (int son : sons[s])
{
dfs(son);
dp[s].resize(dp[s].size() + dp[son].size());
for (int i = min(k + 1, (int)dp[s].size() - 1); i > 0; i--)
{
for (int j = min(k + 1, (int)dp[son].size() - 1); j > 0; j--)
{
if (i + j <= min(k + 1, (int)dp[s].size() - 1))
{
dp[s][i + j] = (dp[s][i + j] + 1ll * dp[s][i] * dp[son][j]) % mod;
}
}
dp[s][i] = 1ll * dp[s][i] * dp[son][0] % mod;
}
}
if (k + 1 < dp[s].size())
dp[s][0] = (dp[s][k] + dp[s][k + 1]) % mod;
else if (k < dp[s].size())
{
dp[s][0] = dp[s][k];
}
}
void dfs2(int s)
{
dp2[s][1] = 1;
for (int son : sons[s])
{
dfs2(son);
for (auto i = k+1; i; i--)
{
if(!dp2[s].count(i))continue;
for (auto j = k+1; j; j--)
{
if (j == 0)
continue;
dp2[s][i + j] = (dp2[s][i + j] + 1ll * dp2[s][i] * dp2[son][j]) % mod;
}
dp2[s][i] = 1ll * dp2[s][i] * dp2[son][0] % mod;
}
}
if (dp2[s].count(k))
dp2[s][0] = (dp2[s][0] + dp2[s][k]) % mod;
if (dp2[s].count(k + 1))
dp2[s][0] = (dp2[s][0] + dp2[s][k + 1]) % mod;
}
int main()
{
cin >> T;
while (T--)
{
cin >> n >> k;
if (1ll*k*n<1e18)
{
for (int i = 1; i <= n; i++)
{
sz[i] = 0;
nei[i].clear(), sons[i].clear(), dp[i].clear();
}
for (int i = 0; i < n - 1; i++)
{
int u, v;
cin >> u >> v;
nei[u].pb(v), nei[v].pb(u);
}
getsz(1), dfs(1);
cout << dp[1][0] << endl;
}
else
{
for (int i = 1; i <= n; i++)
{
sz[i] = 0;
nei[i].clear(), sons[i].clear(), dp2[i].clear();
}
for (int i = 0; i < n - 1; i++)
{
int u, v;
cin >> u >> v;
nei[u].pb(v), nei[v].pb(u);
}
getsz(1), dfs2(1);
cout << dp2[1][0] << endl;
}
}
}
详细
Test #1:
score: 100
Accepted
time: 3ms
memory: 41416kb
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: 0
Accepted
time: 2324ms
memory: 49348kb
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:
ok 5550 lines
Test #3:
score: 0
Accepted
time: 927ms
memory: 332900kb
input:
3 99990 259 23374 69108 82204 51691 8142 67119 48537 97966 51333 44408 33147 68485 21698 86824 15746 58746 78761 86975 58449 61819 69001 68714 25787 2257 25378 14067 64899 68906 29853 31359 75920 85420 76072 11728 63836 55505 43671 98920 77281 25176 40936 66517 61029 61440 66908 52300 92101 59742 69...
output:
259200 247 207766300
result:
ok 3 lines
Test #4:
score: 0
Accepted
time: 1877ms
memory: 284356kb
input:
3 99822 332 11587 83046 63424 60675 63423 73718 74622 40130 5110 26562 28361 80899 30886 70318 8708 11068 34855 96504 7904 75735 31904 42745 87892 55105 82374 81319 77407 82147 91475 12343 13470 95329 58766 95716 83232 44156 75907 92437 69785 93598 47857 33018 62668 31394 24238 72675 98254 43583 180...
output:
315881300 4505040 185631154
result:
ok 3 lines
Test #5:
score: -100
Time Limit Exceeded
input:
3 99021 1000 41739 4318 72541 76341 31227 15416 49232 13808 50837 51259 74464 11157 92684 84646 95226 64673 74155 82511 33301 31373 5901 29318 38227 98893 96752 57411 35167 42401 24344 90803 6956 33753 51120 24535 29594 2646 70305 32961 93079 38070 49273 48987 62799 77986 94353 84447 74970 31546 263...
output:
917568