Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 그리디
- BOJ
- dfs
- 완전탐색
- DP
- 동적 계획법
- 삼성 SDS 대학생 알고리즘 특강
- BFS
- 백트래킹
- 구현
- sw expert academy
- 백준
- 에라토스테네스의 체
- dynamic programming
- Algorithm
- 삼성 기출
- hackerrank
- 시뮬레이션
- 해커랭크
- 다이나믹 프로그래밍
- 스택
- 맛집
- 브루트포스
- C++
- SWEA
- koitp
- PS
- 알고리즘
- 소수
- 잠실
Archives
- Today
- Total
펭로그
[C++] 백준 BOJ 13458 시험 감독 본문
문제링크 : https://noj.am/13458
단순 구현 문제인데 정답률이 25%대로 낮은 문제이다.
그 이유는 출력 자료형을 다들 고려하지 않아서 그런 것 같다.
최대로 나올 수 있는 값이 1,000,000 * 1,000,000이기 때문에 long long 타입을 사용해야한다.
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 32 | // BOJ 13458 시험 감독 #include <iostream> #include <vector> using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); // freopen("../input.txt", "r", stdin); int num, main, sub; cin >> num; vector<int> person(num); for (auto &i : person) cin >> i; cin >> main >> sub; long long result = 0; for (int idx = 0; idx < num; idx++) { person[idx] -= main; result++; if (person[idx] <= 0) continue; if (person[idx] % sub > 0) result++; result += person[idx] / sub; } cout << result; return 0; } | cs |
'Study > PS(Algorithm)' 카테고리의 다른 글
[C++] Codeforces Round #514 (Div. 2) - C. Sequence Transformation (0) | 2018.10.06 |
---|---|
[C++] Codeforces Round #514 (Div. 2) - A. Cashier (0) | 2018.10.06 |
[C++] 백준 BOJ 1991 트리 순회 (0) | 2018.10.03 |
[C++] 백준 BOJ 8916 이진 검색 트리 (0) | 2018.10.03 |
[C++] 백준 BOJ 11403 경로 찾기 (0) | 2018.10.02 |
Comments