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
- 스택
- 투 포인터
- 백준
- 구현
- 다이나믹 프로그래밍
- 정렬
- 재귀
- VR
- 누적 합
- 브루트포스
- 백트래킹
- DFS
- ue5
- 시뮬레이션
- 다익스트라
- Unreal Engine 5
- 트리
- XR Interaction Toolkit
- 알고리즘
- Team Fortress 2
- BFS
- c++
- 수학
- 그래프
- 자료구조
- 유니온 파인드
- 문자열
- 우선순위 큐
- 그리디 알고리즘
- 유니티
Archives
- Today
- Total
1일1알
백준 3060번 욕심쟁이 돼지 C++ 본문
https://www.acmicpc.net/problem/3060
#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;
vector<int64> lastV(6);
vector<int64> currV(6);
int t;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin >> t;
while (t--) {
int64 n;
cin >> n;
for (int i = 0; i < 6; i++) cin >> lastV[i];
int day = 1;
while (true) {
int64 sum = 0;
for (int i = 0; i < 6; i++) sum += lastV[i];
if (sum > n) break;
for (int i = 0; i < 6; i++) {
int64 currVal = lastV[i];
currVal += lastV[(i + 1) % 6];
currVal += lastV[(i + 3) % 6];
currVal += lastV[(i + 5) % 6];
currV[i] = currVal;
}
for (int i = 0; i < 6; i++) lastV[i] = currV[i];
day++;
}
cout << day << "\n";
}
}
'알고리즘' 카테고리의 다른 글
백준 17829번 222-풀링 C++ (0) | 2023.05.05 |
---|---|
백준 2508번 사탕 박사 고창영 C++ (0) | 2023.05.04 |
백준 2799번 블라인드 C++ (0) | 2023.05.02 |
백준 4108번 지뢰찾기 C++ (0) | 2023.04.30 |
백준 23843번 콘센트 C++ (0) | 2023.04.29 |