118 - ZOJ Monthly, July 2012

http://acm.zju.edu.cn/onlinejudge/showContestProblems.do?contestId=339

都是赛后做的。。。弱爆了

A题是找由2和5组成的数字的个数

直接打个表就行了

只是比赛的时候不知道怎么打表啊。。

View Code
#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;int a[1000];
#define ll long long
const int inf = ~0U>>1;
int cnt = 0;
bool judge(ll n){int t = 0;ll tmp = n;while(tmp){t++;tmp/=10;}ll r = 1;while(t--)r *= 10;if(r % n == 0)return true;else return false;
}
void init(){ll p = 1, q = 1;for(int i = 0; i < 31;i ++){q = 1;for(int j = 0; j < 25; j ++){if(q > inf)break;if(p * q < inf && judge(p * q))a[cnt++] = p * q;q *= 5;}p *= 2;if(p > inf)break;}
}
int main()
{int m, n;init();while(~scanf("%d%d", &m, &n)){int ans = 0;for(int i = 0; i < cnt; i ++){if(m <= a[i] && n >= a[i]) ans ++;}printf("%d\n", ans);}return 0;
}

B题更是不会

一直以为排序后就选取第一个就是了

哪知道应该是所有的都计算选取最小的。。跪了Orz

当然,这题转换成0-1背包也行,我们当时也这样做了,不过还是做错了

View Code
#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;int main()
{int n, l;while(~scanf("%d%d", &n, &l)){int cost, weight;int ans = 999999999;while(n--){scanf("%d%d", &cost, &weight);/*int len = 0;int tmp = 0;int cnt = 0;while(len < l){tmp ++;len += cnt * weight;if(tmp % cost == 0)cnt ++;}ans = min(ans, tmp);*/int sum = 0;for(int i = cost; i < 300; i ++){sum += weight * ((i-1)/cost);if(sum >=l){ans = min(ans, i);break;}}}printf("%d\n", ans);}return 0;
}

J题更是奇葩了,吐嘈不能啊。。。

数据里应该是好多输出m的,不然为什么少一句if(ans == m)return;就TLE呢 ?

真心跪到惨。。。

代码里第一种方法是参考蛋蛋哥的

搜索到第k个的时候,如果sum加上剩下的和不超过m就直接return了,好想法啊,记住了

第二种是看大神的博客的

第三种是我自己的

怎么写怎么弱,还过不了

最后几乎都一样了还是过不了

不想再改了

View Code
#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;int a[40];
int b[40];
int ans;
int n, m;
/*
void dfs(int k, int sum)
{if(ans == m)return;if(k == 0){ans = max(sum, ans);return;}if(a[k] + sum <= m){if(b[k] + sum <= m){ans = max(ans, b[k] + sum);return;}else{ans = max(ans, sum + a[k]);dfs(k-1, sum);dfs(k-1, sum + a[k]);}}else{ans = max(ans, sum);dfs(k-1, sum);}
}int main(){while(~scanf("%d%d", &n, &m)){for(int i = 1; i <= n; i ++)  scanf("%d", a + i);sort(a+1, a +1+ n);//for(int i = 1; i <= n;i ++)printf("%d\n", a[i]);int count = 1;for(int i = 1; i <= n; i ++) if(a[i] <= m) a[count++] = a[i];n = count-1;//printf("%d\n", n);//for(int i = 1; i <= n;i ++)printf("%d\n", a[i]);b[1] = a[1];for(int i = 2; i <= n; i ++)  b[i] = a[i] + b[i-1];//for(int i = 1; i <= n;i ++)printf("%d\n", b[i]);ans = 0;dfs(n, 0);printf("%d\n", ans);}return 0;
}
*/void dfs(int id, int sum)
{if(ans == m)return;//为什么少这一句会T  ?if(sum > ans ) ans = sum;for(int i = id; i < n; i ++){if(sum + a[i] <= m)dfs(i+1, sum + a[i]);}
}
int main()
{while(~scanf("%d%d", &n, &m)){int s = 0;for(int i = 0; i < n; i ++){scanf("%d", a + i);s += a[i];}if(s <= m){printf("%d\n", s);continue;}//memset(vis, 0, sizeof(vis));sort(a, a + n);ans = -1;dfs(0,0);if(ans == -1)puts("0");elseprintf("%d\n", ans);}return 0;
}/*wrong answer
int vis[40];
void dfs(int sum)
{if(ans == m)return;if(sum > ans) ans = sum;for(int i = 0; i < n; i ++){if(vis[i] == 1)continue;if(vis[i] == 0){vis[i] = 1;//sum += a[i];if(sum + a[i] <= m)//printf("%d\n", sum);dfs(sum + a[i]);//sum -= a[i];// vis[i] = 0;}}
}
int main()
{while(~scanf("%d%d", &n, &m)){int s = 0;for(int i = 0; i < n; i ++){scanf("%d", a + i);s += a[i];}if(s <= m){printf("%d\n", s);continue;}sort(a, a + n);memset(vis, 0, sizeof(vis));ans = -1;dfs(0);if(ans == -1)puts("0");elseprintf("%d\n", ans);}return 0;
}
*/

 

本来还想总结一下自己的模板的,看来是没有时间了

加油吧!

转载于:https://www.cnblogs.com/louzhang/archive/2012/07/30/2614459.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/377300.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

edp1.2和edp1.4_EDP​​的完整形式是什么?

edp1.2和edp1.4EDP​​&#xff1a;电子数据处理 (EDP: Electronic Data Processing) EDP is an abbreviation of Electronic Data Processing. It alludes to the functioning of operations of commercial data, documents processing of storing, with the use of a compute…

css链接样式_CSS中的样式链接

css链接样式CSS样式链接 (CSS Styling Links) The links in CSS can be styled in various ways to make our website more presentable and attractive. The links can also be styled depending on their states e.g. visited, active, hover, etc. CSS中的链接可以通过各种方…

css中的媒体查询_CSS中的媒体查询

css中的媒体查询CSS | 媒体查询 (CSS | Media Queries) Creating a web page is not an easy task as it requires loads of content and data so that it becomes strongly responsive to the users. To do that various contents are even added e.g.: resources, informativ…

SharePoint2013安装组件时AppFabric时出现1603错误,解决方法:

采用PowerShell命令批量下载必备组件: 下载完成后&#xff0c;采用批处理命令安装必备组件。 注&#xff1a;SPS2013安装必备组件及批处理下载地址&#xff1a; 需要将必备组件放在安装文件的PrerequisiteInstallerFiles文件夹中&#xff0c;将PreReq2013.bat放在安装文件根目录…

《MySQL——数据表设计三大范式》

目录数据表设计范式第一范式第二范式第三范式数据表设计范式 第一范式 数据表中的所有字段都是不可分割的原子值。 字段值还可以继续拆分的&#xff0c;就不满足第一范式&#xff0c;如下&#xff1a; 下面这个&#xff0c;更加贴合第一范式&#xff1a; 范式设计得越详细&…

三道简单树型dp+01背包~~hdu1561,poj1947,zoj3626

以前学树型dp就是随便的看了几道题&#xff0c;没有特别注意树型dp中的小分类的总结&#xff0c;直到上次浙大月赛一道很简单的树型dp都不会&#xff0c;才意识到自己太水了&#xff5e;&#xff5e;come on&#xff01; hdu1561&#xff1a;题目给出了很多棵有根树&#xff0c…

css 字体图标更改颜色_在CSS中更改字体

css 字体图标更改颜色CSS字体属性 (CSS font properties ) Font properties in CSS is used to define the font family, boldness, size, and the style of a text. CSS中的字体属性用于定义字体系列 &#xff0c; 粗体 &#xff0c; 大小和文本样式 。 Syntax: 句法&#xf…

C++基础知识点整理

基本语法 1、static关键字的作用 1、全局静态变量 加了static关键字的全局变量只能在本文件中使用。 存储在静态存储区&#xff0c;整个程序运行期间都存在。 2、局部静态变量 作用域仍为局部作用域。 不过离开作用域之后&#xff0c;并没有销毁&#xff0c;而是贮存程序中&a…

组合问题 已知组合数_组合和问题

组合问题 已知组合数Description: 描述&#xff1a; This is a standard interview problem to make some combination of the numbers whose sum equals to a given number using backtracking. 这是一个标准的面试问题&#xff0c;它使用回溯功能将总和等于给定数字的数字进…

可变参数模板、右值引用带来的移动语义完美转发、lambda表达式的理解

可变参数模板 可变参数模板对参数进行了高度泛化&#xff0c;可以表示任意数目、任意类型的参数&#xff1a; 语法为&#xff1a;在class或者typename后面带上省略号。 Template<class ... T> void func(T ... args) {// }T:模板参数包&#xff0c;args叫做函数参数包 …

python 子图大小_Python | 图的大小

python 子图大小In some cases, the automatic figure size generated by the matplotlib.pyplot is not visually good or there could be some non-acceptable ratio in the figure. So, rather than allowing a pyplot to decide the figure size, we can manually define t…

《设计模式整理》

目录常见设计模式如何保证单例模式只有一个实例单例模式中的懒汉与饿汉模式OOP设计模式的五项原则单例模式中的懒汉加载&#xff0c;如果并发访问该怎么做常见设计模式 单例模式&#xff1a; 单例模式主要解决了一个全局使用的类频繁的创建和销毁的问题。 单例模式下确保某一个…

JSON学习资料整理

1.什么是JSON JSON(JavaScript Object Notation) 是一种轻量级的数据交换格式。它基于JavaScript的一个子集。 JSON采用完全独立于语言的文本格式&#xff0c;但是也使用了类似于C语言家族的习惯&#xff08;包括C, C, C#, Java, JavaScript, Perl, Python等&#xff09;。这些…

OSI七层模型及其数据的封装和解封过程

OSI(Open System Interconnection)参考模型把网络分为七层: 1.物理层(Physical Layer) 物理层主要传输原始的比特流,集线器(Hub)是本层的典型设备; 2.数据链路层(Data Link Layer) 数据链路层负责在两个相邻节点间无差错的传送以帧为单位的数据,本层的典型设备是交换机(Switch)…

rss聚合模式案例_RSS的完整形式是什么?

rss聚合模式案例RSS&#xff1a;真正简单的联合 (RSS: Really Simple Syndication) RSS is an abbreviation of Really Simple Syndication. It is also called Rich Site Summary. It is quality attainment for the syndication of collection of web content and used to di…

《MySQL——38道查询练习(无连接查询)》

目录一、准备数据1、创建数据库2、创建学生表3、创建教师表4、创建课程表5、创建成绩表6、添加数据二、查询练习1、查询 student 表的所有行2、查询 student 表中的 name、sex 和 class 字段的所有行3、查询 teacher 表中不重复的 department 列4、查询 score 表中成绩在60-80之…

XPth和XSLT的一些简单用法

&#xff08;目的在于让大家知道有这个东西的存在&#xff09; XPath:即XML Path语言(Xpath)表达式使用路径表示法(像在URL中使用一样)来为XML文档的各部分寻址&#xff01; 关于XPath如何使用了&#xff0c;我们来看看&#xff01;当然这里面的代码只是入门&#xff0c;更深层…

isc dhcp_ISC的完整形式是什么?

isc dhcpISC&#xff1a;印度学校证书 (ISC: Indian School Certificate) ISC is an abbreviation of the Indian School Certificate. It alludes to the 12th class examination or higher secondary examination conducted by the Council for the Indian School Certificat…

《MySQL——连接查询》

内连接&#xff1a; inner join 或者 join 外连接 1、左连接 left join 或 left outer join 2、右连接 right join 或 right outer join 3、完全外连接 full join 或 full outer join 图示理解 全连接 创建person表和card表 CREATE DATABASE testJoin;CREATE TABLE person (…

win7下 apache2.2 +php5.4 环境搭建

这篇文章很好 没法复制 把链接粘贴来http://www.360doc.com/content/13/0506/13/11495619_283349585.shtml# 现在能复制了&#xff1a; 把任何一篇你要复制、却不让复制的文章收藏入收藏夹(直接CtrlD,确定) 2在收藏夹中&#xff0c;右击刚才收藏的那个网址&#xff0c;点属性 3…