题目描述:
度度想去商场买一顶帽子,商场里有N顶帽子,有些帽子的价格可能相同,度度想买一顶价格第三便宜的帽子,问第三便宜的帽子价格多少?
输入描述:
首先输入一个正整数N(N <= 50),接下来输入N个数表示每顶帽子的价格(价格均是正整数,且小于等于1000)
输出描述:
如果存在第三便宜的帽子,请输出这个价格是多少,否则输出-1
输入例子:
10
10 10 10 10 20 20 30 30 40 40
输出例子:
30
set——> C++的SET 内部是有序的。
1 // 2 // Created by ProMoriarty on 2017/8/17. 3 // 4 #include <bits/stdc++.h> 5 #include<iostream> 6 #include<stdio.h> 7 #include<math.h> 8 #include<string.h> 9 using namespace std; 10 set<int> s; 11 int main(){ 12 int n; 13 scanf("%d",&n); 14 for(int i=0;i<n;i++){ 15 int x; 16 scanf("%d",&x); 17 s.insert(x); 18 } 19 int cnt = 0; 20 set<int>::iterator it; 21 for(it = s.begin();it!=s.end();it++){ 22 cnt++; 23 if(cnt==3){ 24 printf("%d\n",*it); 25 break; 26 } 27 } 28 if(cnt<3) 29 printf("-1\n"); 30 return 0; 31 }
时间: 2024-09-29 18:08:19