728x90
출처
https://www.acmicpc.net/problem/2460
내 풀이
#include<iostream>
using namespace std;
int exit_people = 0;
int enter_people = 0;
int cnt_people;
int max_people = 0;
int main()
{
for (int i = 0; i < 10; i++)
{
cin >> exit_people >> enter_people;
cnt_people += enter_people - exit_people;
if (max_people <= cnt_people) max_people = cnt_people;
}
cout << max_people;
}
해설
역마다 타는 사람에 내리는 사람 수를 빼주고 최고값을 비교해주었다.
느낀점
휴식중
'백준 코딩테스트 > 브론즈' 카테고리의 다른 글
1100) 하얀 칸 (C++) (0) | 2022.05.19 |
---|---|
3034) 앵그리 창영 (C++) (0) | 2022.05.18 |
2750) 수 정렬하기 (C++) (0) | 2022.05.07 |
2444) 별 찍기 - 7 (C++) (0) | 2022.05.05 |
2445) 별 찍기 - 8 (C++) (0) | 2022.05.04 |