Submission #632891

# Submission time Handle Problem Language Result Execution time Memory
632891 2022-08-21T06:04:29 Z MohammadAghil LIS (INOI20_lis) C++17
20 / 100
4000 ms 7628 KB
      #include <bits/stdc++.h>
  #pragma GCC optimize ("Ofast,unroll-loops")
#pragma GCC target ("avx2")
    using namespace std;
  typedef long long ll;
   typedef pair<int, int> pp;
    #define er(args ...) cerr << __LINE__ << ": ", err(new istringstream(string(#args)), args), cerr << endl
      #define per(i,r,l) for(int i = (r); i >= (l); i--)
        #define rep(i,l,r) for(int i = (l); i < (r); i++)
           #define all(x) begin(x), end(x)
              #define sz(x) (int)(x).size()
                  #define pb push_back
                      #define ss second
                           #define ff first
                                   void err(istringstream *iss){}template<typename T,typename ...Args> void err(istringstream *iss,const T &_val, const Args&...args){string _name;*iss>>_name;if(_name.back()==',')_name.pop_back();cerr<<_name<<" = "<<_val<<", ",err(iss,args...);}
void IOS(){
     cin.tie(0) -> sync_with_stdio(0);
     // #ifndef ONLINE_JUDGE
     //      freopen("in.txt", "r", stdin);
     //      freopen("out.txt", "w", stdout);
     // #endif
}
mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());
const ll mod = 1e9 + 7, maxn = 1e6 + 5, sq = 2000, lg = 20, inf = ll(1e18) + 5;
ll pw(ll a,ll b,ll md=mod){if(!b)return 1;ll k=pw(a,b>>1ll);return k*k%md*(b&1ll?a:1)%md;}

int fen[maxn], n, pos[maxn], val[maxn], dp[maxn], tmp[maxn];
set<int> val_pos[sq], place[sq]; 
int ptr, stk[maxn], en;

int main(){ IOS();
     cin >> n;
     stk[0] = -1;
     rep(i,1,n+1){
          fen[i] = i&-i;
          stk[i] = -1;
     }
     map<int, int> cmp;
     rep(i,0,n){
          cin >> pos[i] >> tmp[i];
          cmp[tmp[i]] = 0;
     }
     int id = 0;
     for(auto&c: cmp) c.ss = id++;
     vector<bool> is(n + 1); 
     per(i,n-1,0) {
          int ps = 0, cr = pos[i];
          per(i,lg-1,0){
               if((ps|(1<<i)) < n && fen[ps|(1<<i)] < cr){
                    ps |= 1<<i;
                    cr -= fen[ps];
               }
          }
          ps++;
          assert(!is[ps]);
          is[ps] = true;
          // er(nw);
          val[ps] = cmp[tmp[i]];
          pos[i] = ps;
          for(; ps < n + 1; ps += ps&-ps) fen[ps]--;
     }
     // rep(i,0,n) er(pos[i], val[i]);
     int ans = 1;
     rep(i,0,n){
          int p = pos[i], v = val[pos[i]];
          dp[p] = 1;
          rep(j,0,v){
               auto it = lower_bound(all(val_pos[j]), p);
               if(it != begin(val_pos[j])){
                    dp[p] = max(dp[p], dp[*prev(it)] + 1);
                    // er(i, j);
               }
          }
          // er(i, dp[p]);
          place[dp[p]].insert(p);
          val_pos[v].insert(p);


          // auto bg = place[dp[p]].upper_bound(p), en = bg; 
          // for(; en != end(place[dp[pos[i]]]) && val[*en] > v; en++) dp[*en]++, ans = max(ans, dp[p] + 1), er(i, *en, val[*en], v);

          // place[dp[p] + 1].insert(bg, en);
          // place[dp[p]].erase(bg, en);

          // rep(i,1,5){
          //      cerr << i << ":" << endl;
          //      for(int c: place[i]) cerr << c << ' ';
          //      cerr << endl;
          // }
          // cerr << "_____" << endl;

          // vector<int> stk{p};
          stk[en++] = p;
          // stk.reserve(100);

          while(ptr < en){
               int r = stk[ptr]; ptr++;
               ans = max(ans, dp[r]);
               auto it = place[dp[r]].lower_bound(r);
               for(it++; it != end(place[dp[r]]) && val[*it] > val[r];){
                    dp[*it]++;
                    stk[en++] = *it;
                    place[dp[r] + 1].insert(*it);
                    it++;
                    place[dp[r]].erase(prev(it));
               }
          }

          cout << ans << '\n';
     }
     return 0-0;
}
# Verdict Execution time Memory Grader output
1 Correct 1 ms 468 KB Output is correct
2 Correct 1 ms 468 KB Output is correct
3 Correct 25 ms 724 KB Output is correct
4 Correct 14 ms 724 KB Output is correct
5 Correct 14 ms 1056 KB Output is correct
6 Correct 18 ms 888 KB Output is correct
7 Correct 19 ms 788 KB Output is correct
8 Correct 19 ms 792 KB Output is correct
9 Correct 20 ms 852 KB Output is correct
10 Correct 18 ms 820 KB Output is correct
11 Correct 19 ms 828 KB Output is correct
12 Correct 19 ms 808 KB Output is correct
13 Correct 21 ms 840 KB Output is correct
14 Correct 21 ms 776 KB Output is correct
15 Correct 19 ms 852 KB Output is correct
16 Correct 21 ms 852 KB Output is correct
17 Correct 22 ms 840 KB Output is correct
18 Correct 22 ms 756 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 1 ms 468 KB Output is correct
2 Correct 1 ms 468 KB Output is correct
3 Correct 25 ms 724 KB Output is correct
4 Correct 14 ms 724 KB Output is correct
5 Correct 14 ms 1056 KB Output is correct
6 Correct 18 ms 888 KB Output is correct
7 Correct 19 ms 788 KB Output is correct
8 Correct 19 ms 792 KB Output is correct
9 Correct 20 ms 852 KB Output is correct
10 Correct 18 ms 820 KB Output is correct
11 Correct 19 ms 828 KB Output is correct
12 Correct 19 ms 808 KB Output is correct
13 Correct 21 ms 840 KB Output is correct
14 Correct 21 ms 776 KB Output is correct
15 Correct 19 ms 852 KB Output is correct
16 Correct 21 ms 852 KB Output is correct
17 Correct 22 ms 840 KB Output is correct
18 Correct 22 ms 756 KB Output is correct
19 Execution timed out 4046 ms 7628 KB Time limit exceeded
20 Halted 0 ms 0 KB -