Submission #23180

#TimeUsernameProblemLanguageResultExecution timeMemory
23180RockyBWall (IOI14_wall)C++14
0 / 100
0 ms41080 KiB
#include <bits/stdc++.h> #include "wall.h" /* #include <ext/pb_ds/assoc_container.hpp> #include <ext/pb_ds/tree_policy.hpp> #include <ext/pb_ds/detail/standard_policies.hpp> */ //#include "wall.h" #define f first #define s second #define pb push_back #define pp pop_back #define mp make_pair #define sz(x) (int)x.size() #define sqr(x) ((x) * 1ll * (x)) #define all(x) x.begin(), x.end() #define rep(i, l, r) for (int i = l; i <= r; i++) #define per(i, l, r) for (int i = l; i >= r; i--) #define dbg(x) cerr << (#x) << " --> " << (x) << nl; #define Kazakhstan ios_base :: sync_with_stdio(0), cin.tie(0), cout.tie(0); #define nl '\n' #define ioi exit(0); #define Toktama "" using namespace std; //using namespace __gnu_pbds; typedef long long ll; typedef long double ld; typedef unsigned long long ull; //typedef tree < pair <int, int>, null_type, less < pair <int, int> >, rb_tree_tag, tree_order_statistics_node_update> ordered_set; const int N = 2e6 + 7, inf = 1e9 + 7, mod = 1e9 + 7; const ll linf = (ll)1e18 + 7; const int dx[] = {-1, 0, 1, 0, 1, -1, -1, 1}, dy[] = {0, 1, 0, -1, 1, -1, 1, -1}; int n, k; int type[N], l[N], r[N], x[N], ans[N]; void buildWall(int n, int k, int op[], int left[], int right[], int height[], int finalHeight[]) { rep(i, 1, k) { rep(j, left[i] - 1, right[i] - 1) { if (op[i] == 1) finalHeight[j] = max(finalHeight[j], height[i]); else finalHeight[j] = min(finalHeight[j], height[i]); } } } /* int main() { #ifndef Toktama freopen (Toktama".in", "r", stdin); freopen (Toktama".out", "w", stdout); #endif scanf ("%d%d", &n, &k); rep(i, 1, k) { scanf ("%d%d%d%d", &type[i], &l[i], &r[i], &x[i]); l[i]++, r[i]++; } buildWall(n, k, type, l, r, x, ans); rep(i, 1, n) printf ("%d\n", ans[i]); ioi }*/
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...