HDOJ-ACM Steps
在这里放几道Steps里的题目把。
find your present (2) |
Time Limit: 1000/2000 MS (Java/Others) Memory Limit: 32768/1024 K (Java/Others) |
Total Submission(s): 4570 Accepted Submission(s): 1343 |
Problem Description
In the new year party, everybody will get a "special present".Now
it's your turn to get your special present, a lot of presents now putting on the desk, and only one of them will be yours.Each present has a card number on it, and your present's card number will be the one that different from all the others, and you can assume that only one number appear odd times.For example, there are 5 present, and their card numbers are 1, 2, 3, 2, 1.so your present will be the one with the card number of 3, because 3 is the number that different from all the others. |
Input
The input file will consist of several cases.
Each case will be presented by an integer n (1<=n<1000000, and n is odd) at first. Following that, n positive integers will be given in a line, all integers will smaller than 2^31. These numbers indicate the card numbers of the presents.n = 0 ends the input. |
Output
For each case, output an integer in a line, which is the card number of your present.
|
Sample Input
5 |
Sample Output
3 Hint
Hint use scanf to avoid Time Limit Exceeded |
在使用桶排序、每输入一次往上遍历的方法后依然Runtime Error (STACK_OVERFLOW)
于是使用“异或”进行运算
解题思路:
比如 3^5, 3=011,5=101,两数按位异或后为110,即6。
偶数次出现的异或结果为0 基数次结果为1
然后 异或满足交换率。
再举一个例子。
如 数据 1 2 3 2 1
先让result=0
那么可以看成是 result^1^2^3^2^1
交换律 result^1^1^2^2^3
很明显 1^1 和 2^2 都为 0
所以最后得 result^3 =0^3 =3(二进制 101)
AC代码:
#include <stdio.h>
#include <string.h>
int main()
{
int n,res,i,j;
int x;
while(scanf("%d",&n)!=EOF)
{
if(n==)
break;
res=;
for(i=;i<n;i++)
{
scanf("%d",&x);
res=res^x;
}
printf("%d\n",res);
}
return ;
}
排序 |
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) |
Total Submission(s): 3499 Accepted Submission(s): 1008 |
Problem Description
输入一行数字,如果我们把这行数字中的‘5’都看成空格,那么就得到一行用空格分割的若干非负整数(可能有些整数以‘0’开头,这些头部的‘0’应该被忽略掉,除非这个整数就是由若干个‘0’组成的,这时这个整数就是0)。
你的任务是:对这些分割得到的整数,依从小到大的顺序排序输出。 |
Input
输入包含多组测试用例,每组输入数据只有一行数字(数字之间没有空格),这行数字的长度不大于1000。
输入数据保证:分割得到的非负整数不会大于100000000;输入数据不可能全由‘5’组成。 |
Output
对于每个测试用例,输出分割得到的整数排序的结果,相邻的两个整数之间用一个空格分开,每组输出占一行。
|
Sample Input
0051231232050775 |
Sample Output
0 77 12312320 |
注意事项: 如果是005123123205077555555555
输出也是 0 77 12312320
如果此处不特殊考虑容易WA
AC代码:
#include <stdio.h>
#include <string.h>
int main()
{
int ti,k,i,j,len,tmp;
int a[];
char n[];
while(gets(n))
{
k=;
ti=;
tmp=;
len=strlen(n);
for(i=len-;i>=;i--)
{
// printf("%d tmp:%d\n",n[i]-'0',tmp);
if(i==len-&&n[i]=='')
continue;
else if(n[i]=='')
{
if(n[i+]=='')
continue;
a[k]=tmp;
k++;
ti=;
tmp=;
}
else if(i==&&n[i]!='')
{
tmp+=ti*(n[i]-'');
ti*=;
a[k]=tmp;
k++;
ti=;
tmp=;
}
else
{
tmp+=ti*(n[i]-'');
ti*=;
}
}
for(i=;i<k;i++)
{
for(j=k-;j>=i;j--)
{
if(a[j]<a[j-])
{
tmp=a[j];a[j]=a[j-];a[j-]=tmp;
}
}
}
for(i=;i<k;i++)
{
if(i<k-)
printf("%d ",a[i]);
else
printf("%d\n",a[i]);
}
}
return ;
}
排名 |
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) |
Total Submission(s): 3051 Accepted Submission(s): 991 |
Problem Description
今天的上机考试虽然有实时的Ranklist,但上面的排名只是根据完成的题数排序,没有考虑
每题的分值,所以并不是最后的排名。给定录取分数线,请你写程序找出最后通过分数线的 考生,并将他们的成绩按降序打印。 |
Input
测试输入包含若干场考试的信息。每场考试信息的第1行给出考生人数N ( 0 < N
< 1000 )、考题数M ( 0 < M < = 10 )、分数线(正整数)G;第2行排序给出第1题至第M题的正整数分值;以下N行,每行给出一 名考生的准考证号(长度不超过20的字符串)、该生解决的题目总数m、以及这m道题的题号 (题目号由1到M)。 当读入的考生人数为0时,输入结束,该场考试不予处理。 |
Output
对每场考试,首先在第1行输出不低于分数线的考生人数n,随后n行按分数从高
到低输出上线考生的考号与分数,其间用1空格分隔。若有多名考生分数相同,则按他们考 号的升序输出。 |
Sample Input
4 5 25 |
Sample Output
3 Hint
|
写这题,QAQ,第一次同时两个对象进行排序
AC代码:
#include <stdio.h>
#include <string.h>
struct stu
{
char n[];
int sum;
int a[];
int score;
int flag;
}a[],tmp;
int main()
{
int n,m,g,i,j,w,x,k;
int b[];
while(scanf("%d",&n)!=EOF)
{
k=;
if(n==)
break;
scanf("%d %d",&m,&g);
for(i=;i<m;i++)
scanf("%d",&b[i]);
for(i=;i<n;i++)
{
scanf("%s %d",a[i].n,&a[i].sum);
a[i].score=;
for(j=;j<a[i].sum;j++)
{
scanf("%d",&a[i].a[j]);
a[i].score+=b[a[i].a[j]-];
}
if(a[i].score>=g)
k++;
}
for(i=;i<n;i++)
{
for(j=n-;j>=i;j--)
{
if(a[j].score>a[j-].score)
{
tmp=a[j];a[j]=a[j-];a[j-]=tmp;
}
else if(a[j].score==a[j-].score)
{
if(strcmp(a[j].n,a[j-].n)<)
{
tmp=a[j];a[j]=a[j-];a[j-]=tmp;
}
}
}
}
printf("%d\n",k);
for(i=;i<k;i++)
printf("%s %d\n",a[i].n,a[i].score);
}
return ;
}
Wooden Sticks |
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) |
Total Submission(s): 1981 Accepted Submission(s): 779 |
Problem Description
There is a pile of n wooden sticks. The length and weight of each
stick are known in advance. The sticks are to be processed by a woodworking machine in one by one fashion. It needs some time, called setup time, for the machine to prepare processing a stick. The setup times are associated with cleaning operations and changing tools and shapes in the machine. The setup times of the woodworking machine are given as follows: (a) The setup time for the first wooden stick is 1 minute. You |
Input
The input consists of T test cases. The number of test cases (T)
is given in the first line of the input file. Each test case consists of two lines: The first line has an integer n , 1<=n<=5000, that represents the number of wooden sticks in the test case, and the second line contains n 2 positive integers l1, w1, l2, w2, ..., ln, wn, each of magnitude at most 10000 , where li and wi are the length and weight of the i th wooden stick, respectively. The 2n integers are delimited by one or more spaces. |
Output
The output should contain the minimum setup time in minutes, one per line.
|
Sample Input
3 |
Sample Output
2 |
这是我AC的第一道贪心题,一开始差不多写出来的时候自己测试却发现有问题,一直想不到。
后来才发现原来是是忘记对FLAG数组初始化导致后面的判断会直接跳过T^T
好吧,直接上AC代码:
// 贪心算法---先排序---后选择第一个没有用过的木头一次向后找,用掉所有可以用掉的木头,然后返回第一个没用过的木头继续找
#include <stdio.h>
#include <string.h>
struct sticks
{
int a;
int b;
}a[],tmp;
int main()
{
int i,j,t,n,st,count;
int flag[],ti;
while(scanf("%d",&t)!=EOF)
{
while(t--)
{
for(i=;i<;i++)
flag[i]=;//对flag数组清零
scanf("%d",&n);
for(i=;i<n;i++)
scanf("%d%d",&a[i].a,&a[i].b);
for(i=;i<n;i++)//按照长度从小到大排序,若长度相同按照重量递增排序
{
for(j=n-;j>=i;j--)
{
if(a[j].a<a[j-].a || a[j].a==a[j-].a && a[j].b<a[j-].b)
{
tmp=a[j];a[j]=a[j-];a[j-]=tmp;
}
}
}
st=; //记录第一个没有用过的木头,st为其下标
count=;
flag[]=;//从a[0]开始,故对a[0]元素作使用标记
while(st<n)
{
++count;//一次安装耗时
for(i=st+,j=st,ti=;i<n;++i)//j为当前操作木棒下标,i为下一待操作木棒下标,ti为有无尚未使用木棒的标识符号
{
if(flag[i])//检查下标为i的目标是否已被使用
continue;
if(a[j].a<=a[i].a&&a[j].b<=a[i].b)
{
flag[i]=;//赋予使用过木棒flag标示符为1
j=i;//当前木棒下标即为i
}
else
{
if(ti)//如果ti!=0
{
st=i;//只记录第一个没用过的木头
ti=;//表明有尚未使用过的木棒
}
}
}
if(ti)//遍历完所有木棒,但仍找不到没使用过的木棒,ti==1,说明都用过了,跳出循环
break;
}
printf("%d\n",count);
}
}
return ;
}
Crixalis's Equipment |
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others) |
Total Submission(s): 2426 Accepted Submission(s): 721 |
Problem Description
Crixalis
- Sand King used to be a giant scorpion(蝎子) in the deserts of Kalimdor. Though he's a guardian of Lich King now, he keeps the living habit of a scorpion like living underground and digging holes. Someday |
Input
The first line contains an integer T, indicating the number of
test cases. Then follows T cases, each one contains N + 1 lines. The first line contains 2 integers: V, volume of a hole and N, number of equipment respectively. The next N lines contain N pairs of integers: Ai and Bi. 0<T<= 10, 0<V<10000, 0<N<1000, 0 <Ai< V, Ai <= Bi < 1000. |
Output
For each case output "Yes" if Crixalis can move all his equipment into the new hole or else output "No".
|
Sample Input
2 20 3 |
Sample Output
Yes |
写这题的时候丝毫没感觉这提是贪心题,但是WA了几次还是没有AC的情况下
反过来想,要把n件物品全部搬到洞里,需要的最小空间是多少?
那么就很明显看出来这是一道贪心题
解题思路:
假设有物品 10 20 (thing 1)
1 7 (thing 2)
先搬物品1后搬物品2需要的最小空间是:max(20,10+7)=20
先搬物品2后搬物品1需要的最小空间是:max(7,1+20)=21
那么我们选择的会是 先搬物品1后搬物品2
物品1和物品2的差别在于(BI-AI)的值
故因此的出:
贪心策略是 先搬差值大的,相等就随意!!
AC代码:
#include <stdio.h>
#include <string.h>
struct sc
{
int a,b,c;
}a[],tmp;
int main()
{
int t,i,j,v,n;
while(scanf("%d",&t)!=EOF)
{
while(t--)
{
scanf("%d%d",&v,&n);
for(i=;i<n;i++)
{
scanf("%d%d",&a[i].a,&a[i].b);
a[i].c=a[i].b-a[i].a;
}
for(i=;i<n;i++)
{
for(j=n-;j>=i;j--)
{
if(a[j].c>a[j-].c)
{
tmp=a[j];a[j]=a[j-];a[j-]=tmp;
}
}
}
for(i=;i<n;i++)
{
if(a[i].b>v)
{
printf("No\n");
break;
}
v-=a[i].a;
if(i==n-)
printf("Yes\n");
}
}
}
return ;
}
Leftmost Digit |
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) |
Total Submission(s): 2142 Accepted Submission(s): 939 |
Problem Description
Given a positive integer N, you should output the leftmost digit of N^N.
|
Input
The input contains several test cases. The first line of the input is a single integer T which is the number of test cases. T test cases follow.
Each test case contains a single positive integer N(1<=N<=1,000,000,000). |
Output
For each test case, you should output the leftmost digit of N^N.
|
Sample Input
2 |
Sample Output
2 Hint
In the first case, 3 * 3 * 3 = 27, so the leftmost digit is 2. In the second case, 4 * 4 * 4 * 4 = 256, so the leftmost digit is 2. |
#include<stdio.h>
#include<math.h>
int main()
{
int t,a,n;
double x;
while(scanf("%d",&t)!=EOF)
{
while(t--)
{
scanf("%d",&n);
x=n*log10(n*1.00000);
x-=(__int64)x;
a=pow(10.0000,x);
printf("%d\n",a);
}
}
return ;
}
HDOJ-ACM Steps的更多相关文章
- HDOJ acm steps 3.1.1
(都是递推求值,呵呵,好开心- - ) 今天又是在自习室通宵(文明玩的停不下来了) 游戏玩完想想该水题了,于是打开了HDOJ的ACM STEPS(这是个好东西,就像他的名字,一步步来的) 2.3.x貌 ...
- ACM STEPS——Chapter Two——Section One
数学题小关,做得很悲剧,有几道题要查数学书... 记下几道有价值的题吧 The area(hdoj 1071) http://acm.hdu.edu.cn/showproblem.php?pid=10 ...
- hdu acm steps Big Event in HDU
上网搜了一下这道题的解法,主要有两个方法,一种是采用母函数的方法,一种是采用0/1背包的方法. 先说一下母函数,即生成函数,做个比喻,母函数就是一个多项式前面的系数的一个整体的集合,而子函数就是这个多 ...
- hdu ACM Steps Section 1 花式A+B 输入输出格式
acm与oi很大的一个不同就是在输入格式上.oi往往是单组数据,而acm往往是多组数据,而且题目对数据格式往往各有要求,这8道a+b(吐槽..)涉及到了大量的常用的输入输出格式.https://wen ...
- ACM Steps 2.1.8
小数化分数2 Time Limit: 1000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others) Total Sub ...
- ACM Steps 2.1.7
Leftmost Digit Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) T ...
- ACM Steps 2.1.4
Largest prime factor Time Limit: 5000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Othe ...
- 2015寒假ACM训练计划
1月26号至3月4号 每天给自己一个计划.做有意义的事情,不要浪费时间. 8:00——11:30 acm训练 11:30——13:00 午休 13:00——17:30 acm训练 17:30——18 ...
- HDOJ/HDU 1161 Eddy's mistakes(大写字母转换成小写字母)
Problem Description Eddy usually writes articles ,but he likes mixing the English letter uses, for e ...
- hdu 1087 动态规划之最长上升子序列
http://acm.hdu.edu.cn/showproblem.php?pid=1087 Online Judge Online Exercise Online Teaching Online C ...
随机推荐
- SPRING 配置文件和类名
今天写项目碰到一个很奇怪的问题,无论怎么改,还是一直包空指针 最终的问题出现在spring配置文件
- Intellij IDEA 2016 mybatis 生成 mapper
转载地址:http://gold.xitu.io/entry/57763ab77db2a2005517ae3f
- 开发环境配置--Ubuntu+Qt4+OpenCV(二)
同系列文章 1. 开发环境配置--Ubuntu+Qt4+OpenCV(一) 2. 开发环境配置--Ubuntu+Qt4+OpenCV(二) 3. 开发环境配置--Ubuntu+Qt4+OpenCV(三 ...
- Android 中退出程序的几种方法
1.finish()方法 finish是Activity的类,仅仅针对Activity,当调用finish()时,只是将活动推向后台,并没有立即释放内存,活动的资源并没有被清理:调用finish()方 ...
- Ajax访问PHP页面出现的跨域问题
1.跨域问题:简单来说就是A域名下的程序想从B域名下的文件里面获取信息(这句话是我上网看到的) 2.一般请求(本地测试): 请求页 响应页 这样做是没问题的. 但我如果将Ajax请求的url ...
- 初识JavaScript,感觉整个人都不好了。。。
学习web前端的开发已经将近一个月了,开发中的三个大兄弟——“html”.“css”.“JavaScript”,小哥我已经深入接触了前两位,并与他俩建立的深厚的友谊.在编写过程中,不能说达到各位大神的 ...
- cookie程序设计举例
编写Cookie应用程序,一般流程是:首先尝试获取某个Cookie变量,如果有,则表明是老客户,读取其cookie信息,为其提供服务. 如果没有,则表明是第一次来访的客户,通过表单提交获取其身份信息, ...
- Zend Studio 12 大集合
前言 本文记录了我个人使用Zend Studio 12的点点滴滴,不定时更新. 内容来源于网络,如有侵权,告知后可删除. 下载 官方链接点击链接,填入相关信息即可下载. 破解 声明:请购买正版,非万不 ...
- hdu 5727 Necklace 二分图匹配
题目链接 给2*n个珠子, n<=9, n个阴n个阳. 然后将它们弄成一个环, 阴阳交替.现在给你m个关系, 每个关系给出a, b. 如果阳a和阴b挨着, 那么a就会变暗. 问你最小变暗几个阳. ...
- hdu 4635 Strongly connected 强连通
题目链接 给一个有向图, 问你最多可以加多少条边, 使得加完边后的图不是一个强连通图. 只做过加多少条边变成强连通的, 一下子就懵逼了 我们可以反过来想. 最后的图不是强连通, 那么我们一定可以将它分 ...