Tuesday, January 15, 2019

[Spoj] LIS2 - Another Longest Increasing Subsequence Problem

Author            : Dipu Kumar Mohanto 
                    CSE, Batch - 6
                    BRUR.
Problem Statement : LIS2 - Another Longest Increasing Subsequence Problem
Source            : Spoj
Category          : LIS
Algorithm         : solving Insert-Query Problems Offline, LIS
Verdict           : Accepted

  1. #include "bits/stdc++.h"  
  2.   
  3. using namespace std;  
  4.   
  5. #define FI              freopen("in.txt", "r", stdin)  
  6. #define FO              freopen("out.txt", "w", stdout)  
  7. #define FAST            ios_base::sync_with_stdio(false), cin.tie(NULL), cout.tie(NULL)  
  8.   
  9. #define FOR(i, n)       for (int i = 1; i <= n; i++)  
  10. #define For(i, n)       for (int i = 0; i < n; i++)  
  11. #define ROF(i, n)       for (int i = n; i >= 1; i--)  
  12. #define Rof(i, n)       for (int i = n-1; i >= 0; i--)  
  13. #define FORI(i, n)      for (auto i : n)  
  14. #define REP(i, a, b)    for (int i = a; i <= b; i++)  
  15.   
  16. #define ll              long long  
  17. #define ull             unsigned long long  
  18. #define vi              vector <int>  
  19. #define vl              vector <ll>  
  20. #define pii             pair <int, int>  
  21. #define pll             pair <ll, ll>  
  22. #define mk              make_pair  
  23. #define ff              first  
  24. #define ss              second  
  25. #define eb              emplace_back  
  26. #define em              emplace  
  27. #define pb              push_back  
  28. #define ppb             pop_back  
  29. #define All(a)          a.begin(), a.end()  
  30. #define memo(a, b)      memset(a, b, sizeof a)  
  31. #define Sort(a)         sort(All(a))  
  32. #define ED(a)           Sort(a), a.erase(unique(All(a)), a.end())  
  33. #define rev(a)          reverse(All(a))  
  34. #define sz(a)           (int)a.size()  
  35. #define max3(a, b, c)   max(a, max(b, c))  
  36. #define min3(a, b, c)   min(a, min(b, c))  
  37. #define maxAll(a)       *max_element(All(a))  
  38. #define minAll(a)       *min_element(All(a))  
  39. #define allUpper(a)     transform(All(a), a.begin(), :: toupper)  
  40. #define allLower(a)     transform(All(a), a.begin(), :: tolower)  
  41. #define endl            '\n'  
  42. #define nl              puts("")  
  43. #define ub              upper_bound  
  44. #define lb              lower_bound  
  45. #define Exp             exp(1.0)  
  46. #define PIE             2*acos(0.0)  
  47. #define Sin(a)          sin(((a)*PIE)/180.0)  
  48. #define EPS             1e-9  
  49.   
  50. #include "ext/pb_ds/assoc_container.hpp"  
  51. #include "ext/pb_ds/tree_policy.hpp"  
  52. using namespace __gnu_pbds;  
  53.   
  54. template <typename T> using orderset = tree <T, null_type, less <T>, rb_tree_tag, tree_order_statistics_node_update>;  
  55.   
  56. #include "ext/rope"  
  57. using namespace __gnu_cxx;  
  58.   
  59. // rope <int> Rope;  
  60.   
  61. // int dr[] = {1, -1, 0, 0}; // 4 Direction  
  62. // int dc[] = {0, 0, 1, -1};  
  63. // int dr[] = {0, 0, 1, -1, 1, 1, -1, -1}; // 8 Direction  
  64. // int dc[] = {1, -1, 0, 0, 1, -1, 1, -1};  
  65. // int dr[] = {-1, 1, -2, -2, -1, 1, 2, 2}; // knight Moves  
  66. // int dc[] = {-2, -2, -1, 1, 2, 2, 1, -1};  
  67.   
  68. #define trace1(x)                           cerr << #x << ": " << x << endl;  
  69. #define trace2(x, y)                        cerr << #x << ": " << x << " | " << #y << ": " << y << endl;  
  70. #define trace3(x, y, z)                     cerr << #x << ": " << x << " | " << #y << ": " << y << " | " << #z << ": " << z << endl;  
  71. #define trace4(a, b, c, d)                  cerr << #a << ": " << a << " | " << #b << ": " << b << " | " << #c << ": " << c << " | " << #d << ": " << d << endl;  
  72. #define trace5(a, b, c, d, e)               cerr << #a << ": " << a << " | " << #b << ": " << b << " | " << #c << ": " << c << " | " << #d << ": " << d << " | " << #e << ": " << e << endl;  
  73. #define trace6(a, b, c, d, e, f)            cerr << #a << ": " << a << " | " << #b << ": " << b << " | " << #c << ": " << c << " | " << #d << ": " << d << " | " << #e << ": " << e << " | " << #f << ": " << f << endl;  
  74.   
  75. inline int setbit(int mask, int pos)        { return mask |= (1 << pos); }  
  76. inline int resetbit(int mask, int pos)      { return mask &= ~(1 << pos); }  
  77. inline int togglebit(int mask, int pos)     { return mask ^= (1 << pos); }  
  78. inline bool checkbit(int mask, int pos)     { return (bool)(mask & (1 << pos)); }  
  79.   
  80. #define popcount(mask)                       __builtin_popcount(mask) // count set bit  
  81. #define popcountLL(mask)                     __builtin_popcountll(mask) // for long long  
  82.   
  83. inline int read()                           { int a; scanf("%d", &a); return a; }  
  84. inline ll readLL()                          { ll a; scanf("%lld", &a); return a; }  
  85. inline double readDD()                      { double a; scanf("%lf", &a); return a; }  
  86.   
  87. template <typename T> string toString(T num) { stringstream ss; ss << num; return ss.str(); }  
  88. int toInt(string s)                          { int num; istringstream iss(s); iss >> num; return num;  }  
  89. ll toLLong(string s)                         { ll num; istringstream iss(s); iss >> num; return num; }  
  90.   
  91. #define inf             1e17  
  92. #define mod             1000000007  
  93.   
  94. static const int maxn = 2e5 + 5;  
  95. static const int logn = 18;  
  96.   
  97. struct node  
  98. {  
  99.       int x, y, id;  
  100.       int dp;  
  101.       node(int x = 0, int y = 0, int id = 0, int dp = 0) :  
  102.             x(x), y(y), id(id), dp(dp) {}  
  103.   
  104.       inline void read()  
  105.       {  
  106.             scanf("%d %d", &x, &y);  
  107.       }  
  108.       inline friend bool operator < (const node &A, const node &B)  
  109.       {  
  110.             if (A.x == B.x) return A.y < B.y;  
  111.             return A.x < B.x;  
  112.       }  
  113. } p[maxn];  
  114.   
  115. int n;  
  116. int Tree[maxn];  
  117.   
  118. inline void update(int pos, int val)  
  119. {  
  120.       while (pos <= n)  
  121.       {  
  122.             Tree[pos] = max(Tree[pos], val);  
  123.             pos += (pos & -pos);  
  124.       }  
  125. }  
  126.   
  127. inline int query(int pos)  
  128. {  
  129.       int ret = 0;  
  130.       while (pos > 0)  
  131.       {  
  132.             ret = max(ret, Tree[pos]);  
  133.             pos -= (pos & -pos);  
  134.       }  
  135.       return ret;  
  136. }  
  137.   
  138. inline void recover(int pos)  
  139. {  
  140.       while (pos <= n)  
  141.       {  
  142.             Tree[pos] = 0;  
  143.             pos += (pos & -pos);  
  144.       }  
  145. }  
  146.   
  147. inline void divideConquer(int l, int r)  
  148. {  
  149.       if (l >= r) return;  
  150.       int mid = (l + r) >> 1;  
  151.       divideConquer(l, mid);  
  152.       sort(p+l, p+mid+1);  
  153.       sort(p+mid+1, p+r+1);  
  154.       int i = l;  
  155.       int j = mid+1;  
  156.       int prefixMax = 0;  
  157.       while (j <= r)  
  158.       {  
  159.             while (i <= mid && p[i].x < p[j].x)  
  160.             {  
  161.                   update(p[i].y, p[i].dp);  
  162.                   ++i;  
  163.             }  
  164.             p[j].dp = max(p[j].dp, query(p[j].y - 1) + 1);  
  165.             ++j;  
  166.   
  167.       }  
  168.       REP(i, l, mid) recover(p[i].y);  
  169.       sort(p+mid+1, p+r+1, [](node a, node b)  
  170.            {  
  171.                  return a.id < b.id;  
  172.            });  
  173.       divideConquer(mid+1, r);  
  174.   
  175. }  
  176.   
  177. map <intint> Map;  
  178. int arr_x[maxn], arr_y[maxn];  
  179.   
  180. int main()  
  181. {  
  182.       FI;  
  183.       n = read();  
  184.       FOR(i, n)  
  185.       {  
  186.             p[i].read();  
  187.             p[i].id = i;  
  188.             p[i].dp = 1;  
  189.             arr_x[i] = p[i].x;  
  190.             arr_y[i] = p[i].y;  
  191.       }  
  192.       sort(arr_x+1, arr_x+n+1);  
  193.       int ptr = 0;  
  194.       FOR(i, n) if (Map.find(arr_x[i]) == Map.end()) Map[ arr_x[i] ] = ++ptr;  
  195.       FOR(i, n) p[i].x = Map[ p[i].x ];  
  196.       sort(arr_y+1, arr_y+n+1);  
  197.       ptr = 0;  
  198.       Map.clear();  
  199.       FOR(i, n) if (Map.find(arr_y[i]) == Map.end()) Map[ arr_y[i] ] = ++ptr;  
  200.       FOR(i, n) p[i].y = Map[ p[i].y ];  
  201.   
  202.       divideConquer(1, n);  
  203.   
  204.       int ans = 0;  
  205.       FOR(i, n) ans = max(ans, p[i].dp);  
  206.       printf("%d\n", ans);  
  207. }  

No comments:

Post a Comment

Note: Only a member of this blog may post a comment.