티스토리 뷰
https://www.acmicpc.net/problem/1931
#include<iostream>
#include<algorithm>
using namespace std;
typedef struct time {
int s;
int e;
}T;
bool cmp(T f, T s) {
if (f.e == s.e)
return f.s < s.s;
else
return f.e < s.e;
}
int main(void) {
int n;
cin >> n;
T *num = new T[n]; // new[]연산자 사용한 동적 배열할당
for (int i = 0; i < n; i++)
cin >> num[i].s >> num[i].e;
sort(num, num + n, cmp);
//음,, 알아서 알아듣도록
int answer = 1;
int index = 0;
for (int i = 1; i < n; i++) {
if (num[index].e <= num[i].s) {
index = i;
answer++;
}
}
cout << answer;
}
'Algorithm > 유형별 : Greedy' 카테고리의 다른 글
[C++] [Greedy] 백준 5585번 : 거스름돈 (0) | 2020.02.02 |
---|---|
[C++] [Greedy] 백준 11047번 : 동전 0 (0) | 2020.02.02 |
[C++] [Greedy] 백준 11399번 : ATM (0) | 2020.02.02 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 상속
- 다형성
- Oracle
- Scott/Tiger
- Delete
- java 환경설정
- INSERT
- 추상화
- java
- 객체
- view
- ojdbc6.jar
- JDBC 프로그램 작성단계
- OOP
- 객체지향
- model
- controller
- select
- jdbc
- Update
- MVC
- 캡슐화
- JdbcTemplate
- .
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
글 보관함