HDU 5646 DZY Loves Partition

时间:2022-09-22 21:23:23

题目链接:

hdu:http://acm.hdu.edu.cn/showproblem.php?pid=5646

bc:http://bestcoder.hdu.edu.cn/contests/contest_chineseproblem.php?cid=680&pid=1002

DZY Loves Connecting

Accepts: 16     Submissions: 169

Time Limit: 4000/2000 MS (Java/Others)

Memory Limit: 262144/262144 K (Java/Others)

问题描述

DZY有一棵nn个结点的无根树,结点按照1\sim n1∼n标号。

DZY喜欢树上的连通集。一个连通集SS是由一些结点组成的集合,满足SS中任意两个结点u,vu,v能够用树上的路径连通,且路径上不经过SS之外的结点。显然,单独一个结点的集合也是连通集。

一个连通集的大小定义为它包含的结点个数,DZY想知道所有连通集的大小之和是多少。你能帮他数一数吗?

答案可能很大,请对10^9 + 710​9​​+7取模后输出。

输入描述

第一行tt,表示有tt组数据。

接下来tt组数据。每组数据第11行一个数nn。第2\sim n2∼n行中,第ii行包含一个数p_ipi​​,表示ii与p_ipi​​有边相连。(1\le p_i \le i-1,2\le i\le n1≤pi​​≤i−1,2≤in)

(n\ge 1n≥1,所有数据中的nn之和不超过200000200000)

输出描述

每组数据输出一行答案,对10^9 + 710​9​​+7取模。

输入样例

2

1

5

1

2

2

3

输出样例

1

42

Hint

第二个样例中,树的4条边分别为(1,2),(2,3),(2,4),(3,5)。所有连通集分别是{1},{2},{3},{4},{5},{1,2},{2,3},{2,4},{3,5},{1,2,3},{1,2,4},{2,3,4},{2,3,5},{1,2,3,4},{1,2,3,5},{2,3,4,5},{1,2,3,4,5}。

If you need a larger stack size,

please use #pragma
comment(linker, "/STACK:102400000,102400000") and submit your
solution using C++.

题解:

注:sum(a,k)表示以a为首项,项数为k的等差数列和(差值为1)

首先判断可行性:

如果sum(1,k)>n,那么明显无法将n划分成k个不同的数。

其次探究最优解的性质:

由于当1<=a<=b-2的时候有ab<(a+1)(b-1),所以当k个数连续或只有一个长度为1的空隙的时候得到最优解。

HDU 5646 DZY Loves Partition

求解最优值:

  设由a开始的k个数为解,则有(a+a+k-1)*k/2==n,所以a>=(int)( ( (n*2.0/k)+1-k)/2),经过调整可求得a',使得sum(a'-1,k) <=n<sum(a',k)。这样只要将数列sum(a',k)的前(sum(a',k)-n)项向左移一位即可求得最优解对应的数列。由sum(1,k)<=n得k<=sqrt(n),可对这个数列暴力求积。

代码:

 #include<iostream>
#include<cstdio>
#define SUM(a,k) ((a * 2 + k - 1)*k / 2)
using namespace std; typedef long long LL;
const int mod = 1e9 + ; LL n, k; int main() {
int tc;
scanf("%d", &tc);
while (tc--) {
scanf("%lld%lld", &n, &k);
if (n < ( + k)*k / ) {
printf("-1\n");
continue;
}
LL a = (LL)((n * * 1.0 / k + - k) / );
while (SUM(a, k) <= n) a++;
LL adj = SUM(a, k) - n;
LL ans = ;
for (int i = ; i < k; i++) {
if (i < adj) {
ans *= (a + i - );
}
else {
ans *= (a + i);
}
ans %= mod;
}
printf("%lld\n", ans);
}
return ;
}

HDU 5646 DZY Loves Partition的更多相关文章

  1. HDU 5646 DZY Loves Partition 数学 二分

    DZY Loves Partition 题目连接: http://acm.hdu.edu.cn/showproblem.php?pid=5646 Description DZY loves parti ...

  2. hdu 5646 DZY Loves Partition 二分&plus;数学分析&plus;递推

    链接:http://acm.hdu.edu.cn/showproblem.php?pid=5646 题意:将n分成k个正整数之和,要求k个数全部相同:并且这k个数的乘积最大为多少?结果mod 1e^9 ...

  3. hdu-5646 DZY Loves Partition&lpar;贪心&rpar;

    题目链接: DZY Loves Partition Time Limit: 4000/2000 MS (Java/Others)     Memory Limit: 262144/262144 K ( ...

  4. HDU 5645 DZY Loves Balls 水题

    DZY Loves Balls 题目连接: http://acm.hdu.edu.cn/showproblem.php?pid=5645 Description DZY loves playing b ...

  5. hdu 5195 DZY Loves Topological Sorting 线段树&plus;拓扑排序

    DZY Loves Topological Sorting Time Limit: 1 Sec  Memory Limit: 256 MB 题目连接 http://acm.hdu.edu.cn/sho ...

  6. hdu 5195 DZY Loves Topological Sorting BestCoder Round &num;35 1002 &lbrack; 拓扑排序 &plus; 优先队列 &vert;&vert; 线段树 &rsqb;

    传送门 DZY Loves Topological Sorting Time Limit: 4000/2000 MS (Java/Others)    Memory Limit: 131072/131 ...

  7. hdu&period;5195&period;DZY Loves Topological Sorting&lpar;topo排序 &amp&semi;&amp&semi; 贪心)

    DZY Loves Topological Sorting Time Limit: 4000/2000 MS (Java/Others)    Memory Limit: 131072/131072 ...

  8. 数据结构&lpar;线段树&rpar;:HDU 5649 DZY Loves Sorting

    DZY Loves Sorting Time Limit: 12000/6000 MS (Java/Others)    Memory Limit: 262144/262144 K (Java/Oth ...

  9. HDU 5194 DZY Loves Balls

    DZY Loves Balls Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others) ...

随机推荐

  1. ie8中遇到的兼容问题以及解决方案

    一.CSS3 1.可以通过在css中引入pie.htc,处理兼容问题(可处理的属性) -webkit-box-shadow: 0 1px 5px #ff2826; -webkit-border-rad ...

  2. &lpar;&period;text&plus;0x12&rpar;&colon; undefined reference to &grave;rpl&lowbar;fprintf&&num;39&semi;

    问题1:(.text+0x12): undefined reference to `rpl_fprintf'解决办法:在yacc前面添加%{#undef yyerrorvoid yyerror (ch ...

  3. Android Studio Error2

    ECLIPSE ANDROID PROJECT IMPORT SUMMARY ====================================== Ignored Files: ------- ...

  4. thinkphp ajax检测是否数据可用

    模板文件:如 index.html 模板文件如:(index.html) <form><input type="text" name="username ...

  5. Unsupported Media Type 415问题解决办法(Ajax)

    场景:Ajax传一个json对象到服务器,让参数自动封装至与json对象匹配的java对象中. 错误类型 错误类型1: "status":415 "error" ...

  6. python web

    [root@xen202 wbk]# python -m SimpleHTTPServerServing HTTP on 0.0.0.0 port 8000 ...

  7. SpringBoot里mybatis查询结果为null的列不返回问题的解决方案

    对于mybatis里查询结果为null的列不返回的问题解决方案 在配置文件application.properties里增加 Mybatis.configuration.call-setters-on ...

  8. TensorFlow之多核GPU的并行运算

    tensorflow多GPU并行计算 TensorFlow可以利用GPU加速深度学习模型的训练过程,在这里介绍一下利用多个GPU或者机器时,TensorFlow是如何进行多GPU并行计算的. 首先,T ...

  9. PCM EQ DRC 音频处理

    PCM Pulse-code modulation的缩写,中文译名是脉冲编码调制.(I2S仅仅是PCM的一个分支,接口定义都是一样的, I2S的采样频率一般为44.1KHZ和48KHZ做,PCM采样频 ...

  10. Hbase记录-Hbase介绍

    Hbase是什么 HBase是一种构建在HDFS之上的分布式.面向列的存储系统,适用于实时读写.随机访问超大规模数据的集群. HBase的特点 大:一个表可以有上亿行,上百万列. 面向列:面向列表(簇 ...