# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
854151 | anhphant | Global Warming (CEOI18_glo) | C++14 | 2060 ms | 11208 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
ll N, X, A[500007];
void initialize() {
ios_base :: sync_with_stdio(0);
cin.tie(0); cout.tie(0);
if (fopen("FILE.INP", "r")) {
freopen("FILE.INP", "r", stdin);
freopen("FILE.OUT", "w", stdout);
}
cin >> N >> X;
for(int i = 1; i <= N; ++i) cin >> A[i];
}
namespace subtask1 {
ll LIS(vector<ll> v) {
//for(int id = 1; id <= N; ++id) cerr << v[id] << " "; cerr << endl;
ll ans = 0;
for(ll mask = 1; mask < (1 << N); ++mask) {
//cerr << "mask = " << mask << endl;
ll last_value = -1e12;
bool flag = 1;
for(ll i = 0; i < N; ++i) {
if (!(mask & (1 << i))) continue;
if (last_value >= v[i + 1]) {
flag = 0;
break;
}
last_value = v[i + 1];
}
if (flag) ans = max(ans, ll(__builtin_popcountll(mask)));
}
return ans;
}
void solve() {
vector<ll> arr(N + 7, 0LL);
for(int i = 1; i <= N; ++i) arr[i] = A[i];
ll res = 0;
for(ll x = -X; x <= X; ++x) {
//cerr << "x = " << x << endl;
for(int i = 1; i <= N; ++i) {
vector<ll> v = arr;
for(int j = i; j <= N; ++j) {
v[j] += x;
res = max(res, LIS(v));
//cerr << i << " " << j << " " << LIS(v) << endl;
}
}
}
cout << res << endl;
}
void process() {
solve();
}
}
namespace subtask2 {
ll LIS(vector<ll> v) {
vector<ll> bslen(N + 1, 0LL);
for(int i = 1; i <= N; ++i) bslen[i] = 1e18;
ll ans = 0;
for(ll i = 1; i <= N; ++i) {
ll k = lower_bound(bslen.begin(), bslen.end(), v[i]) - bslen.begin() - 1;
ans = max(ans, k + 1);
bslen[k + 1] = min(bslen[k + 1], v[i]);
}
return ans;
}
void solve() {
vector<ll> arr(N + 7, 0LL);
for(int i = 1; i <= N; ++i) arr[i] = A[i];
ll res = 0;
for(ll x = -X; x <= X; ++x) {
//cerr << "x = " << x << endl;
for(int i = 1; i <= N; ++i) {
vector<ll> v = arr;
for(int j = i; j <= N; ++j) {
v[j] += x;
res = max(res, LIS(v));
//cerr << i << " " << j << " " << LIS(v) << endl;
}
}
}
cout << res << endl;
}
void process() {
solve();
}
}
int main() {
initialize();
subtask2 :: process();
}
Compilation message (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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |