| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 912254 | vjudge1 | Rabbit Carrot (LMIO19_triusis) | C++17 | 2 ms | 344 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<ll, ll> pll;
typedef pair<int, int> pii;
#define ent "\n"
const int inf = (int)1e9 + 100;
const int maxn = 5e5 + 100;
const ll INF = (ll)1e18;
const int MOD = 1e9 + 7;
const int maxl = 62500;
const ll P = 31, T = 0;
int n, m;
ll a[maxn];
int t[maxn];
int get(int i){
int res = 0;
for(; i > 0; i = (i & (i + 1)) - 1) res = max(res, t[i]);
return res;
}
void upd(int i, int x){
for(; i <= n; i |= (i + 1)) t[i] = max(t[i], x);
}
void test(){
cin >> n >> m;
vector<int> ord(1, 0);
for(int i = 1; i <= n; i++){
cin >> a[i];
a[i] -= 1ll * i * m;
ord.push_back(i);
}
sort(ord.begin(), ord.end(), [](int i, int j){
if(a[i] != a[j]) return a[i] < a[j];
return i > j;
});
int ans;
for(int i: ord){
int d = get(n - i + 1) + 1;
upd(n - i + 1, d);
if(!i) ans = n - d + 1;
}
cout << ans;
}
int main(){
ios_base::sync_with_stdio(0);
cin.tie(0), cout.tie(0);
#ifndef ONLINE_JUDGE
freopen("input.txt", "r", stdin);
freopen("output.txt", "w", stdout);
#endif
int t = 1;
if(T) cin >> t;
while(t--) test();
}
컴파일 시 표준 에러 (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... | ||||
