# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1086319 | 2024-09-10T07:20:21 Z | vjudge1 | Rabbit Carrot (LMIO19_triusis) | C++ | 1 ms | 348 KB |
#include <bits/stdc++.h> using namespace std; typedef long long ll; typedef pair<int, int> pii; void solve() { int n, k; cin >> n >> k; vector<int> poles(n); for (int &p : poles) { cin >> p; } vector<int> poss; for (int i = 1; i <= n; i++) { if (i * k >= poles[i - 1]) poss.push_back(i * k - poles[i - 1]); } vector<int> ans; for (int i = 0; i < n; i++) { int v = poss[i]; int idx = upper_bound(ans.begin(), ans.end(), v) - ans.begin(); if (idx == ans.size()) { ans.push_back(v); } else { ans[idx] = v; } } cout << n - ans.size() << "\n"; } int main() { ios::sync_with_stdio(false); cin.tie(nullptr); solve(); return 0; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 344 KB | Output is correct |
2 | Runtime error | 1 ms | 348 KB | Execution killed with signal 11 |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 344 KB | Output is correct |
2 | Runtime error | 1 ms | 348 KB | Execution killed with signal 11 |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 344 KB | Output is correct |
2 | Runtime error | 1 ms | 348 KB | Execution killed with signal 11 |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 344 KB | Output is correct |
2 | Runtime error | 1 ms | 348 KB | Execution killed with signal 11 |
3 | Halted | 0 ms | 0 KB | - |