using IntPair = pair<int, int>;
int main()
{
int n;
cin >> n;
vector<IntPair> v(n);
for (int i = 0; i < n; i++)
{
cin >> v[i].y >> v[i].x;
}
sort(v.begin(), v.end());
for (int i = 0; i < n; i++)
{
auto pos = v[i];
cout << pos.y << ' ' << pos.x << '\n';
}
}
'코딩테스트 > 백준' 카테고리의 다른 글
[실5] 10815 - 숫자 카드 (0) | 2024.12.01 |
---|---|
[브1] 1934 - 최소공배수 (0) | 2024.12.01 |
[실5] 1312 - 소수 (0) | 2024.11.26 |
[실5] 1676 - 팩토리얼 0의 개수 (0) | 2024.11.25 |
[실5] 1181 - 단어 정렬 (0) | 2024.11.24 |