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
- 알고리즘
- 스택
- 그래프
- 다익스트라
- 시뮬레이션
- Unreal Engine 5
- VR
- 우선순위 큐
- 백준
- XR Interaction Toolkit
- 자료구조
- BFS
- 브루트포스
- 백트래킹
- 문자열
- c++
- 유니온 파인드
- 트리
- 재귀
- ue5
- 수학
- 그리디 알고리즘
- 정렬
- 유니티
- 투 포인터
- 누적 합
- 구현
- Team Fortress 2
- DFS
- 다이나믹 프로그래밍
Archives
- Today
- Total
1일1알
백준 17451번 평행 우주 C++ 본문
https://www.acmicpc.net/problem/17451
최소의 속도를 구하는 것이고 속도를 줄이는것만 가능하기 때문에 뒤에서부터 필요한 만큼만 속도를 올리면서 최소의 속도를 구했다.
#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;
int64 n;
vector<int64> v;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin >> n;
v = vector<int64>(n);
for (int i = 0; i < n; i++) {
cin >> v[i];
}
int64 ans = 0;
for (int i = n - 1; i >= 0; i--) {
if (v[i] >= ans) {
ans = v[i];
}
else {
if (ans % v[i] == 0) continue;
ans = ((ans / v[i]) + 1) * v[i];
}
}
cout << ans;
}
'알고리즘' 카테고리의 다른 글
백준 20310번 타노스 C++ (0) | 2023.01.15 |
---|---|
백준 17141번 연구소 2 C++ (0) | 2023.01.14 |
백준 2660번 회장뽑기 C++ (0) | 2023.01.12 |
백준 11663번 선분 위의 점 C++ (0) | 2023.01.11 |
백준 18115번 카드 놓기 C++ (0) | 2023.01.10 |