# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1100958 | 2024-10-15T05:31:42 Z | akzytr | Stove (JOI18_stove) | C++17 | 1 ms | 336 KB |
#include <bits/stdc++.h> using namespace std; template <typename T> using ve = vector<T>; typedef long long ll; #define pb push_back #define fi first #define se second #define endl '\n' int main() { int N, K; cin >> N >> K; ve<pair<int, int>> times(N); for(int i = 0; i < N; i++) { scanf("%d", ×[i].fi); times[i].se = 1; } int mi_left[K + 1] = {}; int mi_left2[K + 1] = {}; bool tk = false; for(int i = 0; i <= K; i++) { mi_left[i] = 0; mi_left2[i] = 1e9; } for(int i = times.size() - 1; i >= 0; i--) { if(i == times.size() - 1 || times[i].fi + 1 != times[i + 1].fi) { for(int left = 0; left <= K; left++) { mi_left2[left] = min(mi_left2[left], (tk == 0 ? 0 : (int)1e9) + times[i].fi + 1); mi_left2[left] = min(mi_left2[left], mi_left[left] + times[i].fi + 1); } } tk = 1; for(int left = 0; left <= K; left++) { mi_left[left] = min((int)1e9, mi_left2[left - 1] - times[i].fi); } } cout << mi_left[K] << endl; }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 336 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 336 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 336 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |