Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- C++
- 스마트포인터
- 자료구조
- 람다사용정렬
- C++최적화
- unorder_map
- 약참조
- enumasByue
- 알고리즘
- 프로그래머스
- moreeffectiveC++
- 언리얼엔진구조체
- 언리얼가비지컬렉터
- 정렬
- 강참조
- map
- 델리게이트
- 애셋로드
- UE_LOG
- 크리티컬섹션
- 데이터애셋
- 선택정렬
- UML관련
- BFS
- 람다
- UE4 커스텀로그
- 정렬알고리즘
- dataasset
- stl
- UELOG
Archives
- Today
- Total
기억을 위한 기록들
[백준 1946: 신입 사원] - C++ 본문
#include<iostream>
#include<vector>
#include<algorithm>
using namespace std;
int main()
{
int total = 0;
cin >> total;
for (int k = 0; k < total; k++)
{
int n;
cin >> n;
vector<pair<int, int >> t(n);
for (int i = 0; i < n; i++)
{
cin >> t[i].first >> t[i].second;
}
sort(t.begin(), t.end());
int result = 0;
int min = 214000000;
for (int i = 0; i < n; i++)
{
if (min > t[i].second)
{
min = t[i].second;
result++;
}
}
cout << result << '\n';
}
return 0;
}
'Coding Test - cpp > Greedy' 카테고리의 다른 글
[프로그래머스 lv 2 ] - 구명보트 (C++) (1) | 2023.11.22 |
---|---|
[프로그래머스 lv 1 ] - 모의고사 (0) | 2021.04.22 |
[백준 10162: 전자레인지] - C++ (0) | 2021.03.25 |
[백준 1449: 수리공 항승] - C++ (0) | 2021.03.16 |
[백준 1541: 잃어버린 괄호] - C++ (0) | 2021.03.05 |