제출 #930496

#제출 시각아이디문제언어결과실행 시간메모리
930496RegulusGlobal Warming (CEOI18_glo)C++17
15 / 100
36 ms604 KiB
#include <bits/stdc++.h>
#define IO ios::sync_with_stdio(false);cin.tie(0);
#define debug(x) cerr << #x << " = " << (x) << ' '
#define bug(x) cerr << (x) << ' '
#define endl cerr << '\n'
#define all(v) (v).begin(), (v).end()
#define SZ(v) (ll)(v).size()
#define lowbit(x) (x)&-(x)
#define pb emplace_back
#define F first
#define S second
using namespace std;
using ll = long long;
using pll = pair<ll, ll>;
//#define TEST

const int N = 55;
int a[N], b[N];
vector<int> v;

int main(void)
{ IO
    int n, i, ans=0, j, x;

    cin >> n >> x;
    if (n > 50 || x > 50) assert(0);
    for (i=1; i <= n; ++i) cin >> a[i];

    for (i=1; i <= n; ++i)
    {
        for (int j=i; j <= n; ++j)
        {
            for (int d=-x; d <= x; ++d)
            {
                v.clear();
                for (int k=1; k <= n; ++k)
                {
                    b[k] = a[k];
                    if (i <= k && k <= j) b[k] += d;
                    if (v.empty() || b[k] > v.back()) v.pb(b[k]);
                    else *lower_bound(all(v), b[k]) = b[k];
                }
                ans = max(ans, (int)SZ(v));
            }
        }
    }

    cout << ans << '\n';

    return 0;
}

컴파일 시 표준 에러 (stderr) 메시지

glo.cpp: In function 'int main()':
glo.cpp:23:22: warning: unused variable 'j' [-Wunused-variable]
   23 |     int n, i, ans=0, j, x;
      |                      ^
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...