hdu 5587 Array
题目链接:hdu 5587
前两周 bc 上的题了,因为赶大作业所以没有去打,看了下官方给出的思路,感觉好强大~~竟然能转化成求二进制数 1 的个数:
然后数位 dp 就行了,
#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;
typedef unsigned long long ull;
#define For(i,s,t) for(int i = s; i <= t; ++i) ull C[][]; // 组合数
inline void init_C(int n) {
For(i,,n) C[i][] = ;
For(i,,n) For(j,,i) {
C[i][j] = C[i - ][j - ] + C[i - ][j];
}
} // dp[i] 表示所有 i 位二进制数里'1'的个数总数,p2[i] 即 i 位二进制数的总个数
ull dp[], p2[] = {, };
inline void init(int n = ) {
init_C(n);
for(int i = ; i <= n; ++i)
for(int j = ; j <= i; ++j)
dp[i] += j * C[i][j];
For(i,,n)
p2[i] = p2[i - ] * ;
} int digit[]; // digit 数组保存的是 x 的二进制表示法
ull solve(ull x) {
int len = ;
while(x) {
digit[++len] = x % ;
x /= ;
}
int num1 = ; // num1 记录的是 digit 里第 i 位前面的'1'的个数
ull res = ;
for(int i = len; i; --i) {
// 只处理第 i 位为'1'的情况就行,'0'的话在该位没有比它更小的了,所以不用处理
if(digit[i] == ) {
// p2[i - 1] * num1 统计的是第 i 位前面的'1'的个数总数(因为此时第 i 位取'0',后面的 i-1 位可以任取)
// dp[i - 1] 统计后面 i-1 位里'1'的个数总数
res += p2[i - ] * num1 + dp[i - ];
++num1;
}
}
return res;
} int main() {
int t;
ull m;
init();
scanf("%d",&t);
while(t--) {
scanf("%I64u",&m);
printf("%I64u\n",solve(m + )); // 因为上面统一处理的是比 x 小的数,所以在这里 +1
}
return ;
}
网上好像有很多思路可以递归或者递推找规律的,我学习了下,感觉也很强大:
#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;
typedef unsigned long long ull;
const int N = ;
const ull maxLen = 1e16 + ; ull preLen[N], preSum[N]; inline void init(int n = ) {
preLen[] = preSum[] = ;
for(int i = ; i <= n; ++i) {
preLen[i] = preLen[i - ] * + ;
preSum[i] = preSum[i - ] * + (preLen[i] - preLen[i - ]);
if(preLen[i] > maxLen) return ;
}
} ull dfs(ull mlen) {
if(mlen == ) return ;
int pos;
for(int i = ; i <= ; ++i) {
if(mlen < preLen[i + ]) {
pos = i;
break;
}
}
ull remainLen = (mlen == preLen[pos] ? : mlen - preLen[pos] - );
return preSum[pos] + dfs(remainLen) + (mlen - preLen[pos]);
} int main() {
init();
int t;
ull m;
scanf("%d",&t);
while(t--) {
scanf("%I64u",&m);
printf("%I64u\n",dfs(m));
}
return ;
}
因为不是比赛时做,所以时间比较充裕,变量名写得有点长了,看着像在写工程代码
这题,必须好好琢磨才行,它和刚过去的 2015CCPC 南阳的热身赛的第一题很像,都是递归的思想,当时现场想不出来,却被身旁的师弟秒掉了,好惭愧的感觉 -_-|| 看来自己还要勤加练习啊,弱渣就需多努力~
顺便贴一下 5586 Sum 的代码,自己1A掉的:
#include <cstdio>
#include <cstring>
#include <algorithm>
using namespace std;
const int N = ;
#define For(i,s,t) for(int i = s; i <= t; ++i) int a[N], b[N]; inline int trans(const int &x) {
return ( * x + ) % ;
} int maxSum(int *b, int n) {
int res = b[], cur = b[];
for(int i = ; i <= n; ++i) {
cur = max(cur + b[i], b[i]);
res = max(res, cur);
}
return max(res, );
} int main() {
int n;
while(~scanf("%d",&n)) {
int sum = ;
For(i,,n) {
scanf("%d",a + i);
sum += a[i];
b[i] = trans(a[i]) - a[i];
}
printf("%d\n", sum + maxSum(b, n));
}
return ;
}
hdu 5587 Array的更多相关文章
- hdu 5587 Array 数学题
Array Time Limit: 20 Sec Memory Limit: 256 MB 题目连接 http://acm.hdu.edu.cn/showproblem.php?pid=5587 De ...
- hdu 5587 Array 二分
Array Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 131072/131072 K (Java/Others) Problem ...
- HDU 5587——Array——————【规律】
Array Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 131072/131072 K (Java/Others)Total Sub ...
- 2019年CCPC网络赛 HDU 6703 array【权值线段树】
题目大意:给出一个n个元素的数组A,A中所有元素都是不重复的[1,n].有两种操作:1.将pos位置的元素+1e72.查询不属于[1,r]中的最小的>=k的值.强制在线. 题解因为数组中的值唯一 ...
- HDU 5587:Array
Array Accepts: 118 Submissions: 232 Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 131072/ ...
- HDU 6197 array array array 2017沈阳网络赛 LIS
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=6197 题意:给你n个数,问让你从中删掉k个数后(k<=n),是否能使剩下的序列为非递减或者非递增 ...
- hdu 6197 array array array
array array array Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others ...
- 2017多校第10场 HDU 6172 Array Challenge 猜公式,矩阵幂
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=6172 题意:如题. 解法: #include <bits/stdc++.h> using ...
- hdu 6197 array array array LIS
正反跑一次LIS,取最大的长度,如果长度大于n-k就满足条件. ac代码: #include <cstdio> #include <cstring> #include < ...
随机推荐
- 怎样设置才能允许外网访问MySQL
1.将本地数据库的user表的第一条记录的host数据改为%,或者用update user set host='%' where user='root'; 2.用MySQL的命令行客户端操作如下步骤: ...
- objective-c第七章课后练习2
题:改变第七章例子中print方法,增加bool参数,判断如果是YES则对分数进行约简 @interface Fraction : NSObject { //int num,den; } @prope ...
- 云硬盘error、error deleting、deleting状态(数据库基本操作小记)
起因是发现云硬盘显示删光了,但还是创建不了新的云硬盘,在api节点上用cinder list可以看到已经没有硬盘了,但是创建硬盘时,还是会提示配额满了,这是因为数据库里的记录没有更新,对数据库的操作记 ...
- ubuntu配置NFS
ubuntu配置NFS: sudo apt-get install nfs-kernel-server 配置/etc/exports 例如:我们要将根目录下的 /opt/FriendlyARM/min ...
- Android监听返回键、Home键+再按一次返回键退出应用
Android监听返回键需重写onKeyDown()方法 Home键keyCode==KeyEvent.KEYCODE_HOME @Override public boolean onKeyDown( ...
- 【转载】jQuery动画连续触发、滞后反复执行解决办法
转载: http://www.cnblogs.com/yuejin/archive/2012/12/18/2822595.html jQuery中slideUp .slideDown.animate等 ...
- 【QUESTION】
1. HTTP和HTTPS的区别? 2. Soap协议的理解? 3. 一个成功项目,从代码层分析存在可能的问题? 4. mysql 容载技术有哪些? 5. mysql的性能优化有哪些心得? ----- ...
- .net常见的面试题
1,asp.net中的页生命周期 答:msdn官网已给出标准答案,这里简述一下:页要经历下表概述的8个阶段.除了页生命周期阶段以外,在请求前后还存在应用程序阶段,但是这些阶段并不特定于页. 而这8个阶 ...
- Scala学习笔记之二--基本数据类型
前言 本篇主要讲Scala的基本数据类型,更多教程请参考:Scala教程 基本数据类型 Scala一共提供了9中数据类型,Scala的基本数据类型与java中的基本数据类型是一一对应的,这是Scala ...
- C语言的内存分配
内存分为五大区: 1.栈区:在函数内部声明的变量都存在栈区,只管申请,系统会帮我们自动释放,释放的时间是作用域结束,遵循先进后出(first in last off(FILO)),栈的开辟是连续的,不 ...