#include <iostream>
#include <algorithm>
#include <cmath>
#include <vector>
#include <string>
using namespace std;
int n,nr[10002],x[10002],temp=0;
int main() {
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
cin>>n;
std::string chk;
int xrn;
for(int i=0;i<n;i++){
cin>>chk>>xrn;
if(chk=="TAK"){
nr[temp]=i;
x[temp]=xrn;
temp++;
}
}
for(int i=0;i<10;i++){
cout<<nr[i]+1<<" ";
}
int il=0,tmp=10;
while(il<10){
if(x[tmp]<2){
cout<<nr[tmp]+1<<" ";
il++;
}
tmp++;
}
return 0;
}
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | #include <iostream> #include <algorithm> #include <cmath> #include <vector> #include <string> using namespace std; int n,nr[10002],x[10002],temp=0; int main() { ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); cin>>n; std::string chk; int xrn; for(int i=0;i<n;i++){ cin>>chk>>xrn; if(chk=="TAK"){ nr[temp]=i; x[temp]=xrn; temp++; } } for(int i=0;i<10;i++){ cout<<nr[i]+1<<" "; } int il=0,tmp=10; while(il<10){ if(x[tmp]<2){ cout<<nr[tmp]+1<<" "; il++; } tmp++; } return 0; } |
English