| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 433285 | fvogel499 | Rabbit Carrot (LMIO19_triusis) | C++14 | 100 ms | 2616 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
/*
File created on 06/19/2021 at 14:09:08.
Link to problem: https://oj.uz/problem/view/LMIO19_triusis
Description:
Time complexity: O()
Space complexity: O()
Status: DEV
Copyright: Ⓒ 2021 Francois Vogel
*/
#include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
#include <functional>
using namespace std;
using namespace __gnu_pbds;
#define pii pair<int, int>
#define f first
// #define s second
#define pb push_back
#define ins insert
#define cls clear
#define ll long long
typedef tree<int, null_type, less<int>, rb_tree_tag, tree_order_statistics_node_update> ordered_set;
signed main() {
cin.tie(0);
// ios_base::sync_with_stdio(0);
int n, m;
cin >> n >> m;
vector<int> b;
for (int i = 0; i < n; i++) {
int v;
cin >> v;
int x = m*(i+1)-v;
if (x >= 0) b.pb(x);
}
vector<int> s;
for (int i : b) {
int p = upper_bound(s.begin(), s.end(), i)-s.begin();
if (p == s.size()) s.pb(i);
else s[p] = i;
}
cout << n-s.size();
int d = 0;
d++;
}
컴파일 시 표준 에러 (stderr) 메시지
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
