Recent Posts
Notice
No Rules Rules
신입 사원 (feat. 백준, 1946번) 본문
728x90
반응형
신입 사원
https://www.acmicpc.net/problem/1946
// woohyeon.kim
// kim519620.tistory.com
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
int main(){
ios::sync_with_stdio(false), cin.tie(NULL);
register int T;
cin >> T;
for(register int t = 1, N, tmp, ans; t <= T; ++t){
cin >> N;
vector<pair<int, int>> arr;
for(register int n = 0, a, b; n < N; ++n)
cin >> a >> b, arr.push_back(make_pair(a, b));
sort(arr.begin(), arr.end());
ans = 1;
tmp = arr[0].second;
for(register int i = 1; i < N; ++i)
if(tmp >= arr[i].second){
tmp = arr[i].second;
++ans;
}
cout << ans << "\n";
}
return 0;
}
// *&)*@*
반응형
- 두 점수를 모으고 정렬합니다.
- 첫 사람은 가장 낮은 서류 점수를 가지고 있습니다. 따라서 다음으로 높은 서류 통과자와 면접 점수를 비교하여, 만약 그보다 높다면 합격의 대상이므로 카운팅합니다.
- 여기서 서류점수는 사실상 모두 통과한 것이나 다름 없고 그 점수에 따라 순위 (정렬) 가 정해집니다.
728x90
반응형
'생활 > 코테' 카테고리의 다른 글
R2 (feat. 백준, 3046번) (0) | 2022.10.19 |
---|---|
과자 (feat. 백준, 10156번) (0) | 2022.10.19 |
회전 초밥 (feat. 백준, 15961번) (0) | 2022.10.18 |
3대 측정 (feat. 백준, 20299번) (0) | 2022.10.18 |
방어율 무시 계산하기 (feat. 백준, 25756번) (0) | 2022.10.17 |
Comments