Submission #202571

#TimeUsernameProblemLanguageResultExecution timeMemory
202571galen_colinWall (IOI14_wall)C++14
100 / 100
1466 ms179320 KiB
#include <bits/stdc++.h>
#include <chrono> 
 
using namespace std;
using namespace std::chrono; 
 
// #pragma GCC target ("avx2")
// #pragma GCC optimization ("O3")
// #pragma GCC optimization ("unroll-loops")
// #pragma optimization_level 3
// #pragma GCC optimize("Ofast,no-stack-protector,unroll-loops,fast-math,O3")
// #pragma GCC target("sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx,tune=native")
 
#define f0r(a, b) for (long long a = 0; a < (b); a++)
#define f1r(a, b, c) for (long long a = (b); a < (c); a++)
#define f0rd(a, b) for (long long a = (b); a >= 0; a--)
#define f1rd(a, b, c) for (long long a = (b); a >= (c); a--)
#define ms(arr, v) memset(arr, v, sizeof(arr))
#define pb push_back
#define io {ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL);}
#define mp make_pair
#define f first
#define s second
#define presum(p, a, n) {p[0] = a[0]; for (int i = 1; i < (n); i++) p[i] = a[i] + p[i-1];}
#define all(v) v.begin(), v.end()
#define getunique(v) {sort(all(v)); v.erase(unique(all(v)), v.end());}
#define readgraph(list, edges) for (int i = 0; i < edges; i++) {int a, b; cin >> a >> b; a--; b--; list[a].pb(b); list[b].pb(a);}
#define ai(a, n) for (int ele = 0; ele < n; ele++) cin >> a[ele];
#define ain(a, lb, rb) for (int ele = lb; ele <= rb; ele++) cin >> a[ele];
#define ao(a, n) {for (int ele = 0; ele < n; ele++) { if (ele) cout << " "; cout << a[ele]; } cout << '\n';}
#define aout(a, lb, rb) {for (int ele = lb; ele <= rb; ele++) { if (ele > lb) cout << " "; cout << a[ele]; } cout << '\n';}
typedef long long ll;
typedef double ld;
typedef long double lld;
typedef unsigned long long ull;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
typedef vector<int> vi;
typedef vector<ll> vl;
typedef vector<pii> vpi;
typedef vector<pll> vpl;
 
template<typename A> ostream& operator<<(ostream &cout, vector<A> const &v);
template<typename A, typename B> ostream& operator<<(ostream &cout, pair<A, B> const &p) { return cout << "(" << p.f << ", " << p.s << ")"; }
template<typename A> ostream& operator<<(ostream &cout, vector<A> const &v) {
  cout << "["; for(int i = 0; i < v.size(); i++) {if (i) cout << ", "; cout << v[i];} return cout << "]";
}
template<typename A, typename B> istream& operator>>(istream& cin, pair<A, B> &p) {
  cin >> p.first;
  return cin >> p.second;
}
 
// template<typename A, typename B> ll max(A x, B y) {
//   return x > y ? x : y;
// }
// template<typename A, typename B> ll min(A x, B y) {
//   return x < y ? x : y;
// }
 
mt19937 rng(steady_clock::now().time_since_epoch().count());
/* usage - just do rng() */
 
void usaco(string filename) {
  // #pragma message("be careful, freopen may be wrong")
	freopen((filename + ".in").c_str(), "r", stdin);
	freopen((filename + ".out").c_str(), "w", stdout);
}
 
const lld pi = 3.14159265358979323846;
const ll mod = 1000000007;
// const ll mod = 998244353;

struct state {
    pii free;
    int en;
    
    state() {
        free = mp(0, 100000);
        en = -1;
    }
    state(pii a, int b) {
        free = a;
        en = b;
    }
};
typedef struct state state;

vector<state> tree;

state combine(state a, state b) {
    if (b.en != -1) {
        return b;
    } else if (a.en != -1) {
        if (a.en < b.free.f) return state(a.free, b.free.f);
        else if (a.en > b.free.s) return state(a.free, b.free.s);
        else return state(a.free, a.en);
    } else {
        pii isect = mp(max(a.free.f, b.free.f), min(a.free.s, b.free.s));
        // cout << a.free << " " << b.free << " " << isect << endl;
        if (isect.f > isect.s) {
            if (a.free.f < b.free.f) return state(b.free, b.free.f);
            else return state(b.free, b.free.s);
        } else return state(isect, -1);
    }
}

state update(state s, int tl, int tr, int loc, int ind) {
    if (loc < tl || loc > tr) return tree[ind];
    
    if (tl == tr) return tree[ind] = s;
    
    int mid = (tl + tr) / 2;
    state a = update(s, tl, mid, loc, 2 * ind + 1);
    state b = update(s, mid + 1, tr, loc, 2 * ind + 2);
    return tree[ind] = combine(a, b);
}

// namespace interactor {
  
// }
 
// using namespace interactor;
 
// void buildWall(int n, int q, int op[], int left[], int right[], int height[], int finalHeight[]);
 
// int main() {
// //   usaco("file");
 
//   int n, q;
//   cin >> n >> q;
//   int op[q];
//   int left[q];
//   int right[q];
//   int height[q];
//   int finalHeight[n];
//   f0r(i, q) cin >> op[i] >> left[i] >> right[i] >> height[i];
//   f0r(i, n) finalHeight[i] = 0;
//   buildWall(n, q, op, left, right, height, finalHeight);
//   // buildWall(3, 3, 
//   // new int[3]{1, 1, 2},
//   // new int[3]{0, 1, 0},
//   // new int[3]{1, 2, 1},
//   // new int[3]{2, 4, 3},
//   // new int[3]{0, 0, 0});
// }
 
#include "wall.h"
 
ll n, m, k, q, Q, T, l, r, x, y, z;
ll a[1000005];
ll b[1000005];
ll c[1000005];
string s, t;
ll ans = 0;
 
vector<pair<int, pii> > st[2000005], en[2000005];
const int block = 500;
 
void buildWall(int n, int q, int op[], int left[], int right[], int height[], int a[]) {
  f0r(i, n) a[i] = 0;
  tree = vector<state>(4 * q);
  
  int mn = 0, mx = 0;
  f0r(i, q) {
    mn = min(mn, height[i]);
    mx = max(mx, height[i]);
  }
 
  f0r(i, q) {
      int l = left[i], r = right[i], h = height[i];
      
      st[l].pb(mp(i, mp(op[i], h)));
      en[r + 1].pb(mp(i, mp(op[i], h)));
  }
  
  f0r(i, n) {
      for (pair<int, pii> x: st[i]) {
          pii v = x.s;
          state y = state();
          if (v.f == 1) {
              y.free.f = v.s;
          } else y.free.s = v.s;
          update(y, 0, q - 1, x.f, 0);
      }
      for (pair<int, pii> x: en[i]) {
          pii v = x.s;
          state y = state();
          update(y, 0, q - 1, x.f, 0);
      }
      
      state s = tree[0];
    //   cout << s.free << " " << s.en << endl;
      if (s.en != -1) a[i] = s.en;
      else if (a[i] < s.free.f) a[i] = s.free.f;
      else if (a[i] > s.free.s) a[i] = s.free.s;
  }
 
//   ao(a, n);
}
 
// int main() {
//   io;
//   // freopen("case", "r", stdin);
//   // freopen("test.txt", "r", stdin);
//   // freopen("case", "w", stdout);
//   // freopen("file.in", "r", stdin);
 
//   // usaco("file");
 
  
// } 

Compilation message (stderr)

wall.cpp: In function 'void buildWall(int, int, int*, int*, int*, int*, int*)':
wall.cpp:186:15: warning: variable 'v' set but not used [-Wunused-but-set-variable]
           pii v = x.s;
               ^
wall.cpp: In function 'void usaco(std::__cxx11::string)':
wall.cpp:65:9: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)', declared with attribute warn_unused_result [-Wunused-result]
  freopen((filename + ".in").c_str(), "r", stdin);
  ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
wall.cpp:66:9: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)', declared with attribute warn_unused_result [-Wunused-result]
  freopen((filename + ".out").c_str(), "w", stdout);
  ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...