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

poj 2371 Questions and answers

时间:2016-08-17 21:07:33      阅读:93      评论:0      收藏:0      [点我收藏+]

标签:

题目链接:http://poj.org/problem?id=2371

题意:前面给出N和N个数,中间一串字符串(分割用),后面给出M和M个询问,问第I小的数字是多少。

分析:水。。。直接sort一下,然后输出第I-1个就好(下标从0开始)。

代码:

技术分享
#include<cstdio>
#include<cmath>
#include<cstring>
#include<queue>
#include<stack>
#include<cstdlib>
#include<string>
#include<vector>
#include<map>
#include<string>
#include<iostream>
#include<algorithm>
using namespace std;
#define INF 0x3f3f3f3f
typedef long long ll;
#define Max(a,b) (a>b)?a:b
#define lowbit(x) x&(-x)
int n,a[1000005];
int main()
{

    scanf("%d",&n);
    for(int i=0;i<n;i++)
    {
        scanf("%d",&a[i]);
    }
    sort(a,a+n);
    char s[105];
    scanf("%s",s);
    int m;
    scanf("%d",&m);
    while(m--)
    {
        scanf("%d",&n);
        printf("%d\n",a[n-1]);
    }
}
View Code

 

poj 2371 Questions and answers

标签:

原文地址:http://www.cnblogs.com/wwdf/p/5781469.html

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