답안 #854807

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
854807 2023-09-29T02:44:22 Z NeroZein K개의 묶음 (IZhO14_blocks) C++17
0 / 100
0 ms 348 KB
#include "bits/stdc++.h"
using namespace std;

int main(){
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  int n, k;
  cin >> n >> k;
  vector<int> a(n + 1);
  vector<vector<long long>> dp(k, vector<long long> (n + 1)); 
  for (int i = 1; i <= n; ++i) {
    cin >> a[i];
    dp[0][i] = max(a[i], (int) dp[0][i - 1]); 
  }
  for (int j = 1; j < k; ++j) {
    stack<pair<int, long long>> stk; 
    for (int i = j + 1; i < n; ++i) {
      long long x = dp[j - 1][i - 1]; 
      while (!stk.empty() && stk.top().first <= a[i]) {
        x = min(x, stk.top().second);
        stk.pop(); 
      }
      if (stk.empty() || (stk.top().first + stk.top().second > a[i] + x)) {
        stk.push({a[i], x});
      }
      dp[j][i] = stk.top().first + stk.top().second; 
    }
  }
  cout << dp[k - 1][n - 1] << '\n'; 
  return 0;
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 348 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 348 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 348 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 348 KB Output isn't correct
2 Halted 0 ms 0 KB -