Submission #284138

#TimeUsernameProblemLanguageResultExecution timeMemory
284138OzyWall (IOI14_wall)C++17
0 / 100
1 ms256 KiB
#include "wall.h" #include <bits/stdc++.h> #define lli long long int #define rep(i,a,b) for (lli i = (a); i <= (b); i++) #define MIN -100001 using namespace std; struct x{ lli pos; lli tipo; lli val; bool operator < (const x &a) const { return pos < a.pos; } }; set<lli> set1,set2; vector<x> sum,res; lli cant1[100002],cant2[100002]; lli cont1,cont2,a,b; void buildWall(int n, int k, int op[], int left[], int right[], int height[], int finalHeight[]){ rep (i,0,k-1) { if (op[i] == 1) { //agrega sum.push_back({left[i],1,height[i]}); sum.push_back({right[i]+1,0,height[i]}); } else { //quita res.push_back({left[i],1,height[i]}); res.push_back({right[i]+1,0,height[i]}); } } cont1 = 0; cont2 = 0; rep(i,0,n-1) { while (cont1 < sum.size() && sum[cont1].pos == i) { if (sum[cont1].tipo == 1) { cant1[sum[cont1].val] ++; if (cant1[sum[cont1].val] == 1) set1.insert(-(sum[cont1].val)); } else { cant1[sum[cont1].val]--; if (cant1[sum[cont1].val] == 0) set1.erase(-(sum[cont1].val)); } cont1++; } while (cont2 < res.size() && res[cont2].pos == i) { if (res[cont2].tipo == 1) { cant2[res[cont2].val] ++; if (cant2[res[cont2].val] == 1) set2.insert(-(res[cont2].val)); } else { cant2[res[cont2].val]--; if (cant2[res[cont2].val] == 0) set2.erase(-(res[cont2].val)); } cont2++; } if (set1.lower_bound(MIN) != set1.end()) a = abs(*set1.lower_bound(MIN)); else a = 0; if (set2.lower_bound(MIN) != set2.end()) b = abs(*set2.lower_bound(MIN)); else b = 0; finalHeight[i] = min(a,b); } return; }

Compilation message (stderr)

wall.cpp: In function 'void buildWall(int, int, int*, int*, int*, int*, int*)':
wall.cpp:45:22: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<x>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   45 |         while (cont1 < sum.size() && sum[cont1].pos == i) {
      |                ~~~~~~^~~~~~~~~~~~
wall.cpp:63:22: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<x>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   63 |         while (cont2 < res.size() && res[cont2].pos == i) {
      |                ~~~~~~^~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...