백준 #10814
백준 알고리즘 10814번 문제
문제 : https://www.acmicpc.net/problem/10814
풀이 :
#include <iostream>
#include <string>
#include <algorithm>
#include <vector>
using namespace std;
bool cmp(pair<int, string> x, pair<int, string> y)
{
return x.first < y.first;
}
int main() {
int N;
cin >> N; //회원 수 입력
pair<int, string> member;
vector<pair<int, string>> arr;
for (int i = 0; i < N; i++) { //회원 정보 입력
cin >> member.first >> member.second;
arr.push_back(member);
}
stable_sort(arr.begin(), arr.end(), cmp);
for (int i = 0; i < N; i++) //정렬 출력
cout << arr[i].first << ' ' << arr[i].second << endl;
}
Author And Source
이 문제에 관하여(백준 #10814), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@purangi_code/백준-10814저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)