이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
//Bismillahi Rahmanir Rahim
#include <bits/stdc++.h>
using namespace std; 
typedef long long LL;
typedef long long int ll;
typedef pair<int, int> pii;
typedef pair<LL, LL> pll;
typedef pair<string, string> pss;
typedef vector<ll> vi;
typedef vector<vi> vvi;
typedef vector<pll> vii;
typedef vector<LL> vl;
typedef vector<vl> vvl;
double EPS = 1e-9;
const int N = 1e5;
const ll inf =1000001;
double PI = acos(-1);
const int MX = 2e5 + 5;
const int MS = 30;
int dirx[4] = { 1,0,-1,0 };
int diry[4] = { 0,1,0,-1 };
ll sx,sy,fx,x,fy,Z,m,n,k,y,ans,f[1000001],b[inf],a[inf],r,res,cur,ans1,flag,flag1,flag2,flag3,flag4,cnt,cnt1,cnt2,cnt3,minn,maxx,maxx1,sum,sum1,ans2,ans3;
vector<ll> adj[200000];
vi z,z1;
char c[505][505];
ll visited[500001],color[500001];
vector<ll> dist;    
ll mat[1001][1001]; 
string str,str1,str2,str3;
const int md = 1e9+7;
vector<vector<pair<int,int>>> g;
vector<pair<ll,ll>>v;
vl v2;
priority_queue<pair<pair<long long, int>, bool> > pq;
map<ll,ll>mp;
map<char,ll>mp1;
queue<ll> q;
set<ll>s;
multiset<LL> ms;
stack<LL>st;
double pi=3.14159265358979323846;
bool ok[505][505];
vector<ll> v1[500001];
bool prime[200001];
vector<char> path;
ll is[N+1];
ll dp[505][505];
ll en[200001],ex[200001],tour[200001],depth[200001],segtree[inf];
ll up[MS][MX];
#define FOR(a, b, c) for (int(a) = (b); (a) < (c); ++(a))
#define FORN(a, b, c) for (int(a) = (b); (a) <= (c); ++(a))
#define FORD(a, b, c) for (int(a) = (b)-1; (a) >= (c); --(a))
#define FORSQ(a, b, c) for (int(a) = (b); (a) * (a) <= (c); ++(a))
#define FORC(a, b, c) for (char(a) = (b); (a) <= (c); ++(a))
#define FOREACH(a, b) for (auto&(a) : (b))
#define REP(i, n) FOR(i, 0, n)
#define REPN(i, n) FORN(i, 1, n)
#define MAX(a,b) a=max(a,b)
#define MIN(a, b) a = min(a, b)
#define SQR(x) ((LL)(x) * (x))
#define RESET(a, b) memset(a, b, sizeof(a))
#define fi first
#define se second
#define pb push_back
#define ALL(v) v.begin(), v.end()
#define ALLA(arr, sz) arr, arr + sz
#define SIZE(v) (int)v.size()
#define SORT(v) sort(ALL(v))
#define REVERSE(v) reverse(ALL(v))
#define SORTA(arr, sz) sort(ALLA(arr, sz))
#define REVERSEA(arr, sz) reverse(ALLA(arr, sz))
#define TC(t) while (t--)
#define ins insert
#define PERMUTE next_permutation
/*********/
ll find_lis(vector<ll> a) {
    vector<ll> dp;
    for (ll i : a) {
        ll pos = lower_bound(dp.begin(), dp.end(), i) - dp.begin();
        if (pos == dp.size()) {
            dp.push_back(i);
        } else {
            dp[pos] = i;
        }
    }
    return dp.size();
}
void solve()
{
    
    cin >> n >> x;
    FOR(i,0,n)
    {
        cin >> y;
        z.pb(y);    
    }
    if(x==0)
    {
        cout << find_lis(z) << endl;
    }
    else if(x==1e9)
    {
        FOR(i,0,n/2)
        {
            z[i]-=x;
        }
        cout << find_lis(z) << endl;
    }
    else
    {
        vector<ll> v=z;
        FOR(i,0,n)
        {
            v=z;
            FOR(j,0,i+1)
            {
                v[j]-=x;
            }
            ans=max(ans,find_lis(v));
        }
        cout << ans << endl;
    }
}
 
/*********/
int main()
{       
    ios::sync_with_stdio(0);     
    cin.tie(0);
    int t=1;
    int i =1;
    //cin >> t;
    //freopen("snakes.in", "r", stdin);
    //freopen("snakes.out", "w", stdout); 
    TC(t)
    {
        solve();
    }
    return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
glo.cpp: In function 'll find_lis(std::vector<long long int>)':
glo.cpp:80:17: warning: comparison of integer expressions of different signedness: 'll' {aka 'long long int'} and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   80 |         if (pos == dp.size()) {
      |             ~~~~^~~~~~~~~~~~
glo.cpp: In function 'void solve()':
glo.cpp:50:30: warning: unnecessary parentheses in declaration of 'i' [-Wparentheses]
   50 | #define FOR(a, b, c) for (int(a) = (b); (a) < (c); ++(a))
      |                              ^
glo.cpp:93:5: note: in expansion of macro 'FOR'
   93 |     FOR(i,0,n)
      |     ^~~
glo.cpp:50:30: warning: unnecessary parentheses in declaration of 'i' [-Wparentheses]
   50 | #define FOR(a, b, c) for (int(a) = (b); (a) < (c); ++(a))
      |                              ^
glo.cpp:104:9: note: in expansion of macro 'FOR'
  104 |         FOR(i,0,n/2)
      |         ^~~
glo.cpp:50:30: warning: unnecessary parentheses in declaration of 'i' [-Wparentheses]
   50 | #define FOR(a, b, c) for (int(a) = (b); (a) < (c); ++(a))
      |                              ^
glo.cpp:113:9: note: in expansion of macro 'FOR'
  113 |         FOR(i,0,n)
      |         ^~~
glo.cpp:50:30: warning: unnecessary parentheses in declaration of 'j' [-Wparentheses]
   50 | #define FOR(a, b, c) for (int(a) = (b); (a) < (c); ++(a))
      |                              ^
glo.cpp:116:13: note: in expansion of macro 'FOR'
  116 |             FOR(j,0,i+1)
      |             ^~~
glo.cpp: In function 'int main()':
glo.cpp:133:9: warning: unused variable 'i' [-Wunused-variable]
  133 |     int i =1;
      |         ^| # | 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... |