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
- 브루트포스
- 다이나믹 프로그래밍
- 백트래킹
- Team Fortress 2
- 다익스트라
- 정렬
- 유니온 파인드
- VR
- 그리디 알고리즘
- 유니티
- 트리
- 문자열
- 구현
- 자료구조
- BFS
- 스택
- XR Interaction Toolkit
- 수학
- 시뮬레이션
- 누적 합
- 투 포인터
- 백준
- ue5
- DFS
- c++
- 우선순위 큐
- 재귀
- Unreal Engine 5
- 그래프
- 알고리즘
Archives
- Today
- Total
1일1알
백준 23351번 물 주기 C++ 본문
https://www.acmicpc.net/problem/23351
시뮬레이션
#include <iostream>
#include <string>
#include <vector>
#include <math.h>
#include <algorithm>
#include <utility>
#include <stack>
#include <queue>
#include <math.h>
#include <set>
#include <map>
#include <list>
#include <unordered_map>
#include <unordered_set>
#include <iomanip>
#include <limits.h>
using namespace std;
using int64 = long long;
int n, k, a, b;
vector<int> v;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin >> n >> k >> a >> b;
v = vector<int>(n, k);
int day = 0;
int idx = 0;
while (true) {
day++;
for (int i = 0; i < a; i++) {
v[idx] += b;
idx = (idx + 1) % n;
}
bool end = false;
for (int i = 0; i < n; i++) {
v[i]--;
if (v[i] <= 0) {
end = true;
break;
}
}
if (end) break;
}
cout << day;
}
'알고리즘' 카테고리의 다른 글
백준 11060번 점프 점프 C++ (0) | 2022.11.07 |
---|---|
백준 20311번 화학 실험 C++ (0) | 2022.11.05 |
백준 1245번 농장 관리 C++ (0) | 2022.11.03 |
백준 17178번 줄서기 C++ (0) | 2022.11.02 |
백준 13905번 세부 C++ (0) | 2022.10.31 |