-
Notifications
You must be signed in to change notification settings - Fork 0
/
11651.cpp
executable file
·43 lines (40 loc) · 888 Bytes
/
11651.cpp
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
37
38
39
40
41
42
43
// #include<iostream>
// #include<sstream>
// #include<fstream>
// #include<string>
// #include<algorithm>
// #include<cmath>
// #include<stdexcept>
// #include<memory>
// #include<vector>
// #include<list>
// #include<map>
// #include<set>
// #include<numeric>
// using namespace std;
// bool compare(pair<int,int> a, pair<int,int> b){
// if(a.second < b.second) return true;
// else if(a.second == b.second){
// if(a.first < b.first) return true;
// return false;
// }else{
// return false;
// }
// }
// int main(){
// int n;
// vector<pair<int,int>> points;
// cin >> n;
// while(n>0){
// int x;
// int y;
// cin >> x>> y;
// pair<int,int> point(x,y);
// points.push_back(point);
// --n;
// }
// sort(points.begin(),points.end(),compare);
// for(auto p:points){
// cout << p.first << ' ' << p.second << '\n';
// }
// }