티스토리 뷰
https://www.acmicpc.net/problem/16198
백준 소스코드 [C++] 16198 에너지 모으기
#include <iostream>
#include <utility>
#include <vector>
#include <algorithm>
#include <queue>
using namespace std;
int arr[10];
bool check[10];
int energy = 0;
int n;
int chase(int i) {
int a, b;
for (int j = i - 1;0 <= j;j--)
if (check[j] == true)
{ a = arr[j]; break; }
for (int j = i + 1;j < 10;j++)
if (check[j] == true)
{b = arr[j];break;}
return a * b;
}
void charge(int m,int num) {
if (m == 2) {
energy = max(energy, num);
return;
}
for (int i = 1;i < n-1;i++) {
if (check[i] == true) {
check[i] = false;
charge(m - 1, num + chase(i));
check[i] = true;
}
}
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cin >> n;
for (int i = 0;i < n;i++) {
cin >> arr[i];
check[i] = true;
}
int m = n;
charge(m,0);
cout << energy;
return 0;
}
'백준' 카테고리의 다른 글
백준 소스코드 [C++] 1026 보물 (0) | 2020.08.21 |
---|---|
백준 소스코드 [C++] 1002 터렛 (0) | 2020.08.21 |
백준 소스코드 [C++] 15649 N과 M 8 (0) | 2020.08.20 |
백준 소스코드 [C++] 15649 N과 M 7 (0) | 2020.08.20 |
백준 소스코드 [C++] 15649 N과 M 6 (0) | 2020.08.20 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- 강한 순환 참조
- 최단경로 알고리즘
- 최대 매칭
- 네트워크 유량
- CompositionalLayout
- observeOn
- 벨만포드 시간복잡도
- 최단경로문제
- 최단경로 문제
- WWDC16
- 벨만포드 알고리즘
- mach-o
- 에드몬드 카프 알고리즘
- rxswift
- 네트워크 플로우
- State Restoration
- IOS
- test coverage
- 다익스트라 시간복잡도
- WWDC21
- 포드 풀커슨 알고리즘
- 부스트캠프 6기
- HIG
- MeTal
- 코딩대회
- CPU와 Memory
- 컴퓨터 추상화
- Testable
- WWDC17
- WWDC19
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함