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

大理石在哪儿(UVa10474)

时间:2018-07-05 13:53:50      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:itemid   ios   排序   name   show   space   amp   problem   index.php   

  

  题目具体描述见:https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=835&page=show_problem&problem=1415

 

C++ 11代码如下:

 1 #include<iostream>
 2 #include<algorithm>
 3 using namespace std;
 4 int num[10000];
 5 int main() {
 6     int q, n, t,k=0;
 7     while ((cin >> n >> q) && n != 0) {
 8         cout << "CASE# " << ++k << : << endl;
 9         for (int i = 0; i < n; i++) cin >> num[i];
10         sort(num, num + n);  //默认升序
11         while (q--) {
12             cin >> t;
13             int p = lower_bound(num, num + n, t) - num;  //lower_bound输出大于或者等于t的第一个位置,下面还需判断此位置处元素是否等于t
14             if (num[p] == t) cout << t << " found at " << p+1 << endl; //大理石从1开始排序,所以输出p+1
15             else cout << t << " not found" << endl;
16         }
17     }
18     return 0;
19 }

大理石在哪儿(UVa10474)

标签:itemid   ios   排序   name   show   space   amp   problem   index.php   

原文地址:https://www.cnblogs.com/pgzhang/p/9267807.html

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