내 풀이
using namespace std;
#include <iostream>
#include <vector>
#include <algorithm>
bool cmp(pair<int,int>p1, pair<int,int>p2) { // compare 함수
if(p1.first==p2.first)return p1.second<p2.second;
return p1.first<p2.first;
}
int main(void) {
int n;
cin>>n;
vector<pair<int,int>> v;
while(n--)
{
int t1,t2;
cin>>t1>>t2;
v.push_back(make_pair(t1,t2));
}
sort(v.begin(),v.end(),cmp);
for(auto i:v)
{
cout<<i.first<<" "<<i.second<<"\n";
}
}
배운것
오름차순 a<b
내림차순 a>b
정답 코드
// Authored by : std-freejia
// Co-authored by : BaaaaaaaaaaarkingDog
// http://boj.kr/5a5a95bcc0644b138ad6850e5db9e87a
#include <bits/stdc++.h>
using namespace std;
#define X first
#define Y second
int n, a, b;
pair<int, int> p[100004];
int main(void) {
ios::sync_with_stdio(0);
cin.tie(0);
cin >> n;
for(int i = 0; i < n; i++) {
cin >> p[i].X >> p[i].Y;
}
sort(p, p + n);
for(int i = 0; i < n; i++) cout << p[i].X << ' ' << p[i].Y << '\n';
}
참고
'Algorithm > C++' 카테고리의 다른 글
[백준 1431] 시리얼 번호 (0) | 2022.09.25 |
---|---|
[백준 10825] 국영수 (0) | 2022.09.25 |
[백준 15688] 수 정렬하기 5 (0) | 2022.09.21 |
[백준 18808] 스티커 붙이기 (0) | 2022.09.20 |
[백준 15655] N과 M (6) (0) | 2022.09.19 |
댓글