일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Backdoor
- 정보영재원
- C++
- 풀이&소스코드저작권:왕유승
- 리눅스
- 정보과학
- 자료구조
- 반복문
- 수학영재원
- 참조은요양병원
- 독서 감상문
- API
- c언어
- 다중반복문
- For문
- 독후감
- if문
- Linux
- IT
- C
- 문제출저:www.dovelet.com
- 백도어
- 알고리즘
- 영재교육원
- 제어문
- 배열
- DBMS
- 프로그래밍
- 리눅스 명령어
- 정보올림피아드
Archives
- Today
- Total
되는대로 살자
[올림피아드 기출문제&풀이] 본문
#include <stdio.h>
struct flower
{
int openmonth;
int openday;
int closemonth;
int closeday;
}flower[100000];
int main()
{
long n;
int curmonth=3,curday=1,maxmonth=0,maxday=0,visit[100000],maxpos;
int flowercnt=0,i,noflowerchk;
scanf("%d",&n);
for(i=0;i<n;i++) {
scanf("%d %d %d %d",&flower[i].openmonth,&flower[i].openday,
&flower[i].closemonth,&flower[i].closeday);
}
while(curmonth<12) {
noflowerchk=1;
for(i=0;i<n;i++) {
if(visit[i]!=1) {
if(((curmonth>flower[i].openmonth) ||
(curmonth==flower[i].openmonth&&curday>=flower[i].openday))&&
((flower[i].closemonth>maxmonth) ||
(flower[i].closemonth==maxmonth&&flower[i].closeday>=maxday))) {
maxmonth=flower[i].closemonth;
maxday=flower[i].closeday;
maxpos=i;
noflowerchk=0;
}
}
}
if(noflowerchk==1) {
printf("0");
return 0;
}
curmonth=maxmonth;
curday=maxday;
flowercnt++;
visit[maxpos]=1;
}
printf("%d",flowercnt);
}
'2009~2014 > C/C++' 카테고리의 다른 글
[Algorithm] Shake sort (0) | 2012.01.13 |
---|---|
[Algorithm] heap sort (0) | 2012.01.13 |
[C언어 기출문제&풀이] 문제가 뭐엿더라 (0) | 2011.12.08 |
[C언어 기출문제&풀이] 졸리 점퍼(Jolly Jumpers) (0) | 2011.08.14 |
[C언어 기출문제&풀이] 완전 잉여계 (0) | 2011.08.14 |