Submission #870604

#TimeUsernameProblemLanguageResultExecution timeMemory
870604sleepntsheepAlternating Heights (CCO22_day1problem1)C++17
0 / 25
245 ms25740 KiB
#include <iostream> #include <cstring> #include <vector> #include <algorithm> #include <deque> #include <set> #include <utility> #include <array> using namespace std; #define ALL(x) x.begin(), x.end() #define ShinLena cin.tie(nullptr)->sync_with_stdio(false); using i64 = long long; #define N 3005 #define Q 1000005 int n, k, q, a[N], b[N], d[N], e[N][N][2]; array<int, 3> c[Q]; void upd(int p, int k) { for (;p<N;p+=p&-p) b[p]+=k; } int qry(int p) { int z = 0; for (;p;p-=p&-p) z += b[p]; return z;} int main() { ShinLena; cin >> n >> k >> q; for (int i = (*a = -86, 1); i <= n; ++i) cin >> a[i]; for (int i = 0; i < q; ++i) cin >> c[i][0] >> c[i][1], c[i][2] = i; sort(c, c+q); for (int i = n, j = q-1; i; --i) { if (a[i] == a[i+1]) upd(i+2, 1); int x = min(a[i], a[i+1]), y = max(a[i], a[i+1]); if (e[x][y][i&1^1]) upd(1+e[x][y][i&1^1], 1); e[x][y][i&1] = i+1; for (; j >= 0 && c[j][0] >= i; --j) d[c[j][2]] = qry(c[j][1]); } for (int i = 0; i < q; ++i) cout << (d[i] ? "NO\n": "YES\n"); return 0; }

Compilation message (stderr)

Main.cpp: In function 'int main()':
Main.cpp:34:22: warning: suggest parentheses around arithmetic in operand of '^' [-Wparentheses]
   34 |         if (e[x][y][i&1^1]) upd(1+e[x][y][i&1^1], 1);
      |                     ~^~
Main.cpp:34:44: warning: suggest parentheses around arithmetic in operand of '^' [-Wparentheses]
   34 |         if (e[x][y][i&1^1]) upd(1+e[x][y][i&1^1], 1);
      |                                           ~^~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...