zoukankan      html  css  js  c++  java
  • UVa10474.Where is the Marble?

    题目链接: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:
    ", ++ 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 }

  • 相关阅读:
    android sdk里的各目录作用
    android广播接收器
    Android 服务
    全球10个智慧城市应用案例
    大数据应用蓝皮书:未来涉及5个热点领域
    2018杭州-云栖大会
    上海世界人工智能大会大佬观点
    2018世界人工智能大会
    大数据安全
    2018第37周六
  • 原文地址:https://www.cnblogs.com/Destiny-Gem/p/3847718.html
Copyright © 2011-2022 走看看