UVA 10474 (13.08.04)
| Where is the Marble? |
Raju and Meena love to play with Marbles. They have got a lotof marbles with numbers written on them. At the beginning, Rajuwould place the marbles one after another in ascending order ofthe numbers written on them. Then Meena would ask Raju tofind the first marble with a certain number. She would count1...2...3. Raju gets one point for correct answer, and Meena getsthe point if Raju fails. After some fixed number of trials thegame ends and the player with maximum points wins. Today it'syour chance to play as Raju. Being the smart kid, you'd be takingthe favor of a computer. But don't underestimate Meena, she hadwritten a program to keep track how much time you're taking togive all the answers. So now you have to write a program, whichwill help you in your role as Raju.
Input
There can be multiple test cases. Total no of test cases is less than 65. Each test case consistsbegins with 2 integers:N the number of marbles and Q the number of queries Mina wouldmake. The next N lines would contain the numbers written on the N marbles. These marblenumbers will not come in any particular order. FollowingQ lines will have Q queries. Beassured, none of the input numbers are greater than 10000 and none of them are negative.
Input is terminated by a test case where N = 0 andQ = 0.
Output
For each test case output the serial number of the case.
For each of the queries, print one line of output. The format of this line will depend uponwhether or not the query number is written upon any of the marbles. The two different formatsare described below:
- `x found at y', if the first marble with numberx was found at position y.Positions are numbered1, 2,..., N.
- `x not found', if the marble with numberx is not present.
Look at the output for sample input for details.
Sample Input
4 1
2
3
5
1
5
5 2
1
3
3
3
1
2
3
0 0
Sample Output
CASE# 1:
5 found at 4
CASE# 2:
2 not found
3 found at 3
题意:
每一组数据的第一行包含两个数, 第一个数N是石头数, 第二个数Q是要找的石头编号
接下来N个石头, 数值是它们的编号
然后排序, 看看我们要找的石头是排在第几个.
做法:
我第一反应是桶排序, 不过自己还有一种方法, 所以先用自己想的方法写了一遍, 结果WA了
我的想法是: 不用排序, 一个for循环过去, 统计那些 编号值 比 我们要找的石头的编号 要小的石头个数, 并且, 标志一下数组里是否有我们要找的石头.
这个想法是简单直接的, 但是我也不知道错在哪里, 最后乖乖桶排序AC了
下面两份代码, 第一份是AC代码, 第二份是WA代码, 个人还是在深究第二份为何错, 我喜欢自己的想法~
AC:
#include<stdio.h>
#include<string.h> int main() {
int N, Q;
int cas = 0;
while(scanf("%d %d", &N, &Q) != EOF) {
if(N == 0 && Q == 0)
break; int num[10005], sum[10005];
int tmp, aim; memset(sum, 0, sizeof(sum));
memset(num, 0, sizeof(num)); for(int i = 1; i <= N; i++) {
scanf("%d", &tmp);
num[tmp]++;
} printf("CASE# %d:\n", ++cas); for(int i = 1; i <= 10000; i++)
sum[i] = num[i] + sum[i-1]; for(int i = 1; i <= Q; i++) {
scanf("%d", &aim);
if(num[aim])
printf("%d found at %d\n", aim, sum[aim-1] + 1);
else
printf("%d not found\n", aim);
}
}
return 0;
}
WA:
#include<stdio.h> int N, Q;
int cas = 0; int main() {
while(scanf("%d %d", &N, &Q) != EOF) {
if(N == 0 && Q == 0)
break; int aim, pos, mark;
int num[10001]; for(int i = 0; i < N; i++)
scanf("%d", &num[i]); printf("CASE# %d:\n", ++cas); for(int i = 0; i < Q; i++) {
scanf("%d", &aim);
pos = 1;
mark = 0;
for(int j = 0; j < N; j++) {
if(num[j] < aim)
pos++;
if(num[j] == aim)
mark = 1;
}
if(mark == 1)
printf("%d found at %d\n", aim, pos);
else
printf("%d not found\n", aim);
}
}
return 0;
}
UVA 10474 (13.08.04)的更多相关文章
- UVA 156 (13.08.04)
Ananagrams Most crossword puzzle fans are used to anagrams--groupsof words with the same letters i ...
- UVA 10194 (13.08.05)
:W Problem A: Football (aka Soccer) The Problem Football the most popular sport in the world (ameri ...
- UVA 253 (13.08.06)
Cube painting We have a machine for painting cubes. It is supplied withthree different colors: blu ...
- UVA 10790 (13.08.06)
How Many Points of Intersection? We have two rows. There are a dots on the toprow andb dots on the ...
- UVA 573 (13.08.06)
The Snail A snail is at the bottom of a 6-foot well and wants to climb to the top.The snail can cl ...
- UVA 10499 (13.08.06)
Problem H The Land of Justice Input: standard input Output: standard output Time Limit: 4 seconds In ...
- UVA 10025 (13.08.06)
The ? 1 ? 2 ? ... ? n = k problem Theproblem Given the following formula, one can set operators '+ ...
- UVA 465 (13.08.02)
Overflow Write a program that reads an expression consisting of twonon-negative integer and an ope ...
- UVA 10494 (13.08.02)
点此连接到UVA10494 思路: 采取一种, 边取余边取整的方法, 让这题变的简单许多~ AC代码: #include<stdio.h> #include<string.h> ...
随机推荐
- html中元素的id和name的区别(2016-1-22)
HTML中元素的Id和Name属性区别 一直以来一直以为在html中,name和id没什么区别,今天遇到一个坑才发现(PHP获取不到表单数据,原因:元素没有name,只定义了id),这两者差别还是很大 ...
- CSS 显示或隐藏子元素
很多时候我们仅仅只是想让鼠标移动入某个元素,然后显示出某个元素. 大多数博客的标题或内容都是:使用CSS实现鼠标悬停在一行上,显示某些元素 很遗憾,这是错误的,鼠标悬停后,尽管CSS标准中有定义此种方 ...
- IDEA导入eclipse项目并部署运行完整步骤(转发)
首先说明一下:idea里的project相当于eclipse里的workspace,而idea里的modules相当于eclipse里的project 1.File-->Import Proje ...
- [leetcode DP]64. Minimum Path Sum
一个m*n的表格,每个格子有一个非负数,求从左上到右下最短的路径值 和62,63两个值是同一个思路,建立dp表,记录每个位置到右下角的最短路径的值 class Solution(object): de ...
- Python与Django的时区问题
在编码中牵扯到时间问题的时候,总是容易被时区问题搞混,一直以来,都是反复试验应付过去,今天终于搞清楚了个中缘由,一个心结也得以化解. Python 的时区问题 datetime.today() / d ...
- python数据分析之csv/txt数据的导入和保存
约定: import numpy as np import pandas as pd 1 2 3 一.CSV数据的导入和保存 csv数据一般格式为逗号分隔,可在excel中打开展示. 示例 data1 ...
- HTML5前端
Web前端介绍 angular2html 1.HTML (常用标签 网页的基本结构) 2.CSS (常用样式 网页的显示效果) 3.JavaScript (用户交互效果 动态效果) 4.jQuery ...
- php最简单最基础入门笔记
偶然翻到之前刚学php时记录的笔记,特此分享给大家,希望对初学者有所帮助. php网页命名不支持中文 isset($abc) 判断变量是否被定义 empty($abc) 判断变量是否为空 u ...
- Beego 和 Bee 的开发实例
Beego不是一般的web开发包.它构建在大量已存在的Go之上,提供了许多的功能,以下是提供的功能: 一个完整的ORM 缓存 支持session 国际化(i18n) 实时监测和重载 发布支持 ==== ...
- bzoj 3956: Count
3956: Count Description Input Output Sample Input 3 2 0 2 1 2 1 1 1 3 Sample Output 0 3 HINT M,N< ...