일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 가끔은 말로
- 2023
- 알고리즘
- 다익스트라
- NEXT
- dropout
- back propagation
- 미래는_현재와_과거로
- 이분 탐색
- tensorflow
- DP
- 조합론
- 백트래킹
- 크루스칼
- lazy propagation
- pytorch
- Overfitting
- 너비 우선 탐색
- 세그먼트 트리
- 자바스크립트
- 플로이드 와샬
- object detection
- dfs
- BFS
- 문자열
- 우선 순위 큐
- 가끔은_말로
- 분할 정복
- c++
- 회고록
Archives
- Today
- Total
Doby's Lab
[알고리즘] 백준 2217번: 로프 (C++) 본문
https://www.acmicpc.net/problem/2217
솔루션
1) 로프가 들어올 수 있는 각 중량을 입력받아 내림차순으로 정렬한다.
2) 배열에 맨 마지막엔 들어 올릴 수 있는 최솟값이 들어있을 것이다.
3) 그 최솟값과 배열의 사이즈를 곱하면 배열에 들어있는 로프들로 들어 올릴 수 있는 최대 중량이 된다.
4) 맨 뒤 원소를 pop 하고, 2~3 과정을 반복한다.
5) 그 과정에서 최댓값(최대 중량)을 구한다.
[AC 코드]
#include <iostream>
#include <vector>
#include <algorithm>
#include <cmath>
using namespace std;
vector<int> rope;
bool cmp(int a, int b) {
return a > b;
}
int main() {
int n;
cin >> n;
int value;
for (int i = 0; i < n; i++) {
cin >> value;
rope.push_back(value);
}
sort(rope.begin(), rope.end(), cmp);
int maxValue = 0;
while (!rope.empty()) {
int k = rope.size();
//cout << rope.back() * k << '\n';
maxValue = max(maxValue, rope.back() * k);
rope.pop_back();
}
cout << maxValue;
return 0;
}
728x90
'PS > BOJ' 카테고리의 다른 글
[알고리즘] 백준 9466번: 텀 프로젝트 (C++) (0) | 2021.11.26 |
---|---|
[자료구조] 백준 1991번: 트리 순회 (C++) (0) | 2021.11.25 |
[알고리즘] 백준 1166번: 선물 (C++) (0) | 2021.11.25 |
[알고리즘] 백준 14226번: 이모티콘 (C++) (0) | 2021.11.24 |
[알고리즘] 백준 1850번: 최대공약수 (C++) (0) | 2021.11.24 |