# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
389838 | 2021-04-14T15:35:01 Z | SirCovidThe19th | Rabbit Carrot (LMIO19_triusis) | C++14 | 1 ms | 204 KB |
#include <bits/stdc++.h> using namespace std; int main() { //poles, max leap int n, m; cin >> n >> m; vector<int> seq; for (int i = 1; i <= n; i++){ int a; cin >> a; //if (i*m >= a) seq.push_back(m*i-a); } multiset<int> dp; for (int i = 0; i < seq.size(); i++){ auto pos = dp.upper_bound(seq[i]); dp.insert(seq[i]); if (pos != dp.end()) dp.erase(pos); } cout<<n-dp.size(); }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 204 KB | Output is correct |
2 | Incorrect | 1 ms | 204 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 204 KB | Output is correct |
2 | Incorrect | 1 ms | 204 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 204 KB | Output is correct |
2 | Incorrect | 1 ms | 204 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 204 KB | Output is correct |
2 | Incorrect | 1 ms | 204 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |