백준 2979
백준 2979 : 트럭 주차
- 가격들을 저장
- 3대의 트럭 중 가장 이른 시간과 가장 나중 시간을 저장
- 가장 이른 시간부터 가장 나중 시간을 for문으로 돌면서
- 각 시간마다 몇개 트럭이 있나 확인해서 요금에 더함
정답 코드
#include <iostream>
#include <algorithm>
using namespace std;
int main() {
int f[3];
int start[3], end[3];
for(int i=0; i<3; i++) {
cin>>f[i];
}
for(int i=0; i<3; i++) {
cin>>start[i]>>end[i];
}
int start_time = *min_element(start, start+3);
int end_time = *max_element(end, end+3);
int fee=0;
for(int i=start_time; i<end_time; i++) {
int count=0;
if(start[0]<=i && i<end[0]) {
count++;
}
if(start[1]<=i && i<end[1]) {
count++;
}
if(start[2]<=i && i<end[2]) {
count++;
}
fee+=count*f[count-1];
}
cout<<fee<<endl;
return 0;
}
Author And Source
이 문제에 관하여(백준 2979), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@msdio/백준-2979저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)