#include <iostream>
#include <algorithm>
#include <string>
#include <vector>
#include <map>
#include <queue>
using namespace std;
//using IntPair = pair<int, int>;
#define MAX 201
int main()
{
int n;
cin >> n;
map<int, string> m;
vector<queue<string>> v(MAX);
for (int i = 0; i < n; i++)
{
int a;
string str;
cin >> a >> str;
v[a].push(str);
}
for (int i = 0; i < MAX; i++)
{
auto q = v[i];
while (!q.empty())
{
auto cur = q.front(); q.pop();
cout << i << ' ' << cur << '\n';
}
}
}
'코딩테스트 > 백준' 카테고리의 다른 글
[실5] 4673 - 셀프 넘버 (0) | 2025.01.02 |
---|---|
[실4] 1748 - 수 이어 쓰기 1 (0) | 2025.01.01 |
[브2] 17608 - 막대기 (0) | 2025.01.01 |
[실5] 1418 - K-세준수 (0) | 2025.01.01 |
[브1] 3985 - 롤 케이크 (0) | 2024.12.29 |