# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
854153 | anhphant | Global Warming (CEOI18_glo) | C++14 | 57 ms | 9332 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#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();
}
}
namespace subtask4 {
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];
cout << LIS(arr);
}
void process() {
solve();
}
}
int main() {
initialize();
if (N <= 50) subtask2 :: process();
else subtask4 :: process();
}
컴파일 시 표준 에러 (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... |