bool compare(pair<int,int> a,
pair<int,int> b)
{
if(a.first == b.first)
return a.second < b.second;
return a.first < b.first;
}
#include <iostream>
#include <vector>
#include <algorithm>
#include <string>
using namespace std;
bool compare(pair<int,int> a,
pair<int,int> b)
{
if(a.first == b.first)
return a.second < b.second;
return a.first < b.first;
}
int main()
{
int num;
int x, y;
vector<pair<int,int>> xy_list;
cin >> num;
for(int i=0; i < num; i++)
{
cin >> x >> y;
xy_list.push_back(pair<int, int>(x, y));
}
sort(xy_list.begin(), xy_list.end(), compare);
for(int i=0; i < xy_list.size(); i++)
cout << xy_list[i].first << " " << xy_list[i].second << endl;
}
출력은 정상적으로 되지만... 시간초과라 하니 std::cin, cout을 scanf, printf함수로 바꿔보자...
#include <iostream>
#include <vector>
#include <algorithm>
#include <string>
using namespace std;
bool compare(pair<int,int> a,
pair<int,int> b)
{
if(a.first == b.first)
return a.second < b.second;
return a.first < b.first;
}
int main()
{
int num;
int x, y;
vector<pair<int,int>> xy_list;
scanf("%d", &num);
for(int i=0; i < num; i++)
{
scanf("%d%d", &x, &y);
xy_list.push_back(pair<int, int>(x, y));
}
sort(xy_list.begin(), xy_list.end(), compare);
for(int i=0; i < xy_list.size(); i++)
printf("%d %d\n", xy_list[i].first, xy_list[i].second);
}
5
3 4
1 1
1 -1
2 2
3 3
--------
1 -1
1 1
2 2
3 3
3 4
위와 같은 방법으로 구현함.
#include <iostream>
#include <vector>
#include <algorithm>
#include <string>
using namespace std;
bool compare(pair<int,int> a,
pair<int,int> b)
{
if(a.second == b.second)
return a.first < b.first;
return a.second < b.second;
}
int main()
{
int num;
int x, y;
vector<pair<int,int>> xy_list;
scanf("%d", &num);
for(int i=0; i < num; i++)
{
scanf("%d%d", &x, &y);
xy_list.push_back(pair<int, int>(x, y));
}
sort(xy_list.begin(), xy_list.end(), compare);
for(int i=0; i < xy_list.size(); i++)
printf("%d %d\n", xy_list[i].first, xy_list[i].second);
}
5
0 4
1 2
1 -1
2 2
3 3
------
1 -1
1 2
2 2
3 3
0 4