# 312 Burst Balloons

Given n balloons, indexed from 0 to n-1. Each balloon is painted with a number on it represented by array nums. You are asked to burst all the balloons. If the you burst balloon i you will get nums\[left] *nums\[i]* nums\[right] coins. Here left and right are adjacent indices of i. After the burst, the left and right then becomes adjacent.

Find the maximum coins you can collect by bursting the balloons wisely.

```
Note: 
(1) You may imagine nums[-1] = nums[n] = 1. They are not real therefore you can not burst them.
(2) 0 ≤ n ≤ 500, 0 ≤ nums[i] ≤ 100

Example:

Given [3, 1, 5, 8]

Return 167

    nums = [3,1,5,8] --> [3,5,8] -->   [3,8]   -->  [8]  --> []
   coins =  3*1*5      +  3*5*8    +  1*3*8      + 1*8*1   = 167
```

```cpp
//algorithm is incorrect

#include <iostream>
#include <vector>
#include <algorithm>

using namespace std;

void print1D(vector<int> &nums) {
    for (auto i : nums) cout << i << ' ';
}

int maxCoins(vector<int>& nums) {
    int maxCoinValue = 0;
    int min_index;
    int left, center, right;

    while (!nums.empty()) {
        min_index = min_element(nums.begin(), nums.end()) - nums.begin();
        center = nums.at(min_index);

        if (min_index - 1 < 0)
            left = 1;
        else
            left = nums.at(min_index - 1);

        if (min_index + 1 >= nums.size())
            right = 1;
        else
            right = nums.at(min_index + 1);

        maxCoinValue += left*right*center;
        nums.erase(nums.begin() + min_index);
    }
    return maxCoinValue;
}


int main()
{
    vector<int> balloons = { 2,3,4,5,6,7,8,9 };
    vector<int> balloons2 = { 3,1,5,8 };
    int result = maxCoins(balloons2);

    cout << result;
}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://maksimdan.gitbook.io/interview-practice-problems/leetcode_sessions/312_burst_balloons.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
