Study/Baekjoon

[백준/C++] 10814 나이순 정렬

에린_1 2024. 2. 21. 19:41
728x90

10814 나이순 정렬

#include <bits/stdc++.h>
using namespace std;

bool compare(tuple<int, string, int> a, tuple<int, string, int> b)
{
	if (get<0>(a) == get<0>(b))
		return get<2>(a) < get<2>(b);
	else
		return get<0>(a) < get<0>(b);
}

int main()
{
	ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL);
	int n;
	vector<tuple<int, string, int>> n_arr;
	cin >> n;
	for (int i = 0; i < n; ++i)
	{
		int x;
		string y;
		cin >> x >> y;
		n_arr.push_back(make_tuple(x,y,i));
	}
	sort(n_arr.begin(), n_arr.end(),compare);
	
	for (int i = 0; i < n; ++i)
	{
		cout << get<0>(n_arr[i]) << " " << get<1>(n_arr[i]) << "\\n";
	}
	
	return 0;
}
  • vector<tuple>형태로 3개를 쌍으로 받아올 수 있다.
  • 가져올 때는 get을 통해서 받아와야한다.
    • get<인덱스>(어레이)
728x90

'Study > Baekjoon' 카테고리의 다른 글

[백준/C++] 25305 커트라인  (0) 2024.02.22
[백준/C++] 2587 대표값2  (0) 2024.02.22
[백준/C++] 11650 좌표 정렬하기2  (0) 2024.02.21
[백준/C++] 11650 좌표 정렬하기  (0) 2024.02.21
[백준/C++] 1427 소트인사이드  (0) 2024.02.21