码迷,mamicode.com
首页 > 其他好文 > 详细

UVa10474.Where is the Marble?

时间:2014-07-16 17:41:46      阅读:195      评论:0      收藏:0      [点我收藏+]

标签:des   style   blog   http   color   strong   

题目链接:http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=1415

 

13887483 10474 Where is the Marble? Accepted C++ 0.548 2014-07-15 15:34:47
13887433 10474 Where is the Marble? Wrong answer C++ 0.572 2014-07-15 15:27:44

 

 

  Where is the Marble? 

Raju and Meena love to play with Marbles. They have got a lot of marbles with numbers written on them. At the beginning, Raju would place the marbles one after another in ascending order of the numbers written on them. Then Meena would ask Raju to find the first marble with a certain number. She would count 1...2...3. Raju gets one point for correct answer, and Meena gets the point if Raju fails. After some fixed number of trials the game ends and the player with maximum points wins. Today it‘s your chance to play as Raju. Being the smart kid, you‘d be taking the favor of a computer. But don‘t underestimate Meena, she had written a program to keep track how much time you‘re taking to give all the answers. So now you have to write a program, which will 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 consists begins with 2 integers: N the number of marbles and Q the number of queries Mina would make. The next N lines would contain the numbers written on the N marbles. These marble numbers will not come in any particular order. Following Q lines will have Q queries. Be assured, 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 and Q = 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 upon whether or not the query number is written upon any of the marbles. The two different formats are described below:

 

  • `x found at y‘, if the first marble with number x was found at position y. Positions are numbered 1, 2,..., N.
  • `x not found‘, if the marble with number x 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



解题思路:排序后二分,千万要记住,要二分查下界。开始想自己练写一下二分,结果WA了。

 1 #include <cstring>
 2 #include <cstdlib>
 3 #include <cstdio>
 4 #include <iostream>
 5 #include <cmath>
 6 #include <cctype>
 7 #include <set>
 8 #include <vector>
 9 #include <algorithm>
10 #include <numeric>
11 using namespace std;
12 
13 /*int bsearch (vector<int> &a, int x, int y, int v) {
14     int m;
15     while (x < y) {
16         m = x + (y - x) / 2;
17         if (a[m] == v) return m;
18         else if(a[m] > v) y = m;
19         else x = m + 1;
20     }
21     return -1;
22 }*/
23 
24 int main () {
25     int stone_n, ask_n, find_stone, cnt = 0;
26     while (cin >> stone_n >> ask_n) {
27         if (stone_n + ask_n == 0) {
28             break;
29         }
30         int stone_bag[10005];
31         for (int i = 0; i < stone_n; ++ i)  {
32             int x; cin >> stone_bag[i];
33         }
34         sort(stone_bag, stone_bag + stone_n);
35         printf("CASE# %d:\n", ++ cnt);
36         while (ask_n --) {
37             cin >> find_stone;
38             //int res = bsearch(stone_bag, 0, stone_n, find_stone);
39             //cout << res << endl;
40             int res = lower_bound(stone_bag, stone_bag + stone_n, find_stone) - stone_bag;
41             if (stone_bag[res] == find_stone) {
42                 cout << find_stone << " found at " << res + 1 << endl;
43             } else {
44                 cout << find_stone << " not found" << endl;
45             }
46         }
47     }
48 
49     return 0;
50 }

 


UVa10474.Where is the Marble?,布布扣,bubuko.com

UVa10474.Where is the Marble?

标签:des   style   blog   http   color   strong   

原文地址:http://www.cnblogs.com/Destiny-Gem/p/3847718.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!