AcWing 1204. 错误票据
原题链接
简单
c++代码1
#include<iostream>
#include<sstream>
#include<algorithm>
using namespace std;
const int N = 100010; // 统计数字出现的次数
int cnt[N];
int m, n; // 断号和重号
int main(){
int row;
cin >> row;
int s = 1e9,e = 0;
int x; // 直接当作输入一个数来看待
while(cin >> x){
s = min(s,x); // 最小值
e = max(e,x); // 最大值
cnt[x]++; // x这个数字出现次数加1
}
for(int i = s;i <= e;i++){
if(m && n) break; // m和n都找到了答案
if(!cnt[i]) m = i; // 断号
else if(cnt[i] == 2) n = i; // 重号
}
cout<< m << ' '<< n <<endl;
return 0;
}
c++代码2
#include<iostream>
#include<sstream>
#include<algorithm>
using namespace std;
const int N = 10010;
const int M = 100010;
int a[N];
bool exist[M] = {false};
int m, d; // 断号和重号
int main()
{
int n;
int i = 0;
cin >> n;
string line;
getline(cin,line); // 把回车给读掉,getline默认结束符为 \n
while(n--){ // 读入数据
getline(cin,line); // 读入一行数字
stringstream ss(line); // 初始化stringstream
while(ss >> a[i]) { // i是数组下标,把ss中的值输进a数组中,以int类型
if(exist[a[i]]) d = a[i]; // 重号
else
exist[a[i]] = true;
i++;
}
}
int k = 0;
while(!exist[k]){
k++; // 找到开始出现的第一个数字
}
for(int start = k; ;start++){
if(!exist[start]){
m = start;
break;
}
}
cout<<m<<' '<<d<<endl;
return 0;
}