답안 #1096455

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1096455 2024-10-04T13:19:51 Z quangnamoiracvl_ralaidecu Global Warming (CEOI18_glo) C++14
0 / 100
117 ms 15952 KB
#include<bits/stdc++.h>
#define int long long
using namespace std;
const int N=1e5+5, mod = 1e9;
 
int n,k,a[N],st[4*N], dp[N], dpv[N],l[N], b[N]; map<int,int> s;
 
void update(int id, int l, int r, int pos, int val){
    if(pos < l || pos > r) return;
    if(l == r){
       st[id] = val ;
       return;
    }
    int mid = (l+r)/2;
    update(id*2, l, mid, pos, val);
    update(id*2+1, mid+1, r, pos, val);
    st[id] = max(st[id*2] , st[id*2+1]) ;
}
 
int get(int id, int l, int r, int u, int v){
    if(r < u || l > v) return 0;
    if(l >= u && r <= v) return st[id];
 
    int mid = (l+r)/2;
    return max(get(id*2, l, mid, u, v) , get(id*2+1, mid+1, r, u, v)) ;
}
 
signed main()   
{
    ios_base::sync_with_stdio(0);
    cin.tie(0);cout.tie(0);  bool cc = true;
    cin >> n >> k; for ( int i = 1; i <= n; i++ ) 
      {
        cin >> a[i]; 
        s[a[i]] = 1;
      } if ( !k ) cc = false;
      s[k]++;
    int d = 0; 
    for ( auto v : s ) {
        d++;
        s[v.first] = d;
    }
    k = s[k];
    for ( int i = 1; i <= n; i++ ) {
        a[i] = s[a[i]];
        // yêu thảo nguyên vl
    }
    int ans = -1;
    for ( int i = 1; i <= n; i++ ) {
        dp[i] = get(1,1,d,1,a[i] - 1) + 1;
        update(1,1,d,a[i],dp[i]);
    }
    if ( !cc ) {
        cout << ans; 
        return 0;
    }
   // for ( int i = 1; i <= n; i++ ) cout << dp[i] << " "; cout << endl;
    for ( int i = 1; i <= 4 * N; i++ ) st[i] = 0;
    for ( int i = n; i >= 1; i-- )
        {
            dpv[i] = get( 1,1,n,a[i] + 1, n) + 1;
            ans = max( ans, dp[i] + get( 1, 1, n, a[i] - k + 1, n ) );
            update( 1, 1, n, a[i] , dpv[i] );
            
        }
       // for ( int i = 1; i <= n; i++ ) cout << dpv[i] << " "; cout << endl;
    cout << ans;
}

Compilation message

glo.cpp: In function 'int main()':
glo.cpp:58:46: warning: iteration 400019 invokes undefined behavior [-Waggressive-loop-optimizations]
   58 |     for ( int i = 1; i <= 4 * N; i++ ) st[i] = 0;
      |                                        ~~~~~~^~~
glo.cpp:58:24: note: within this loop
   58 |     for ( int i = 1; i <= 4 * N; i++ ) st[i] = 0;
      |                      ~~^~~~~~~~
glo.cpp:58:46: warning: 'void* __builtin_memset(void*, int, long unsigned int)' forming offset [3200160, 3200167] is out of the bounds [0, 3200160] of object 'st' with type 'long long int [400020]' [-Warray-bounds]
   58 |     for ( int i = 1; i <= 4 * N; i++ ) st[i] = 0;
      |                                        ~~~~~~^~~
glo.cpp:6:14: note: 'st' declared here
    6 | int n,k,a[N],st[4*N], dp[N], dpv[N],l[N], b[N]; map<int,int> s;
      |              ^~
glo.cpp:58:46: warning: 'void* __builtin_memset(void*, int, long unsigned int)' forming offset [3200160, 3200167] is out of the bounds [0, 3200160] of object 'st' with type 'long long int [400020]' [-Warray-bounds]
   58 |     for ( int i = 1; i <= 4 * N; i++ ) st[i] = 0;
      |                                        ~~~~~~^~~
glo.cpp:6:14: note: 'st' declared here
    6 | int n,k,a[N],st[4*N], dp[N], dpv[N],l[N], b[N]; map<int,int> s;
      |              ^~
# 결과 실행 시간 메모리 Grader output
1 Correct 2 ms 3416 KB Output is correct
2 Correct 1 ms 3420 KB Output is correct
3 Correct 2 ms 3420 KB Output is correct
4 Correct 1 ms 3420 KB Output is correct
5 Correct 1 ms 3420 KB Output is correct
6 Correct 1 ms 3420 KB Output is correct
7 Correct 1 ms 3420 KB Output is correct
8 Incorrect 0 ms 348 KB Output isn't correct
9 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 2 ms 3416 KB Output is correct
2 Correct 1 ms 3420 KB Output is correct
3 Correct 2 ms 3420 KB Output is correct
4 Correct 1 ms 3420 KB Output is correct
5 Correct 1 ms 3420 KB Output is correct
6 Correct 1 ms 3420 KB Output is correct
7 Correct 1 ms 3420 KB Output is correct
8 Incorrect 0 ms 348 KB Output isn't correct
9 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 2 ms 3416 KB Output is correct
2 Correct 1 ms 3420 KB Output is correct
3 Correct 2 ms 3420 KB Output is correct
4 Correct 1 ms 3420 KB Output is correct
5 Correct 1 ms 3420 KB Output is correct
6 Correct 1 ms 3420 KB Output is correct
7 Correct 1 ms 3420 KB Output is correct
8 Incorrect 0 ms 348 KB Output isn't correct
9 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 37 ms 15952 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 66 ms 8272 KB Output is correct
2 Correct 66 ms 8272 KB Output is correct
3 Correct 58 ms 8252 KB Output is correct
4 Correct 31 ms 6488 KB Output is correct
5 Correct 1 ms 3416 KB Output is correct
6 Correct 35 ms 6484 KB Output is correct
7 Incorrect 48 ms 8276 KB Output isn't correct
8 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 117 ms 13056 KB Output is correct
2 Correct 114 ms 13136 KB Output is correct
3 Runtime error 41 ms 15892 KB Execution killed with signal 11
4 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 2 ms 3416 KB Output is correct
2 Correct 1 ms 3420 KB Output is correct
3 Correct 2 ms 3420 KB Output is correct
4 Correct 1 ms 3420 KB Output is correct
5 Correct 1 ms 3420 KB Output is correct
6 Correct 1 ms 3420 KB Output is correct
7 Correct 1 ms 3420 KB Output is correct
8 Incorrect 0 ms 348 KB Output isn't correct
9 Halted 0 ms 0 KB -