Submission #828035

#TimeUsernameProblemLanguageResultExecution timeMemory
828035boyliguanhanThe Potion of Great Power (CEOI20_potion)C++17
38 / 100
1079 ms262144 KiB
#include<bits/stdc++.h> //#include "potion.h" #pragma GCC optimize(2) #define NN 100100 #define C 10 using namespace std; int h[NN], n; map<int, int> adj[NN]; map<int, set<int>> adj2[NN]; void init(int N, int D, int H[]) { n = N; for(int i = 0; i < N; i++) h[i] = H[i]; } set<int> arr[100100]; void curseChanges(int U, int A[], int B[]) { for(int i = 0; i < n; i++) adj[i][0], adj2[i][0]; for(int i = 1; i <= U; i++) { int a = A[i-1], b = B[i-1]; set<int> &x = arr[a], &y = arr[b]; if(x.count(b)) x.erase(b), y.erase(a); else x.insert(b), y.insert(a); if(!(adj[a].size()%C)) adj2[a][i] = x; if(!(adj[b].size()%C)) adj2[b][i] = y; adj[a][i]=b; adj[b][i]=a; } } int calc(vector<int> a, vector<int> b){ int ans = 1e9; for(int i = 0, j = 0; i < a.size() && j < b.size();i++) { if(a[i]>b[j]) swap(a, b), swap(i, j); if(j) ans=min(ans,abs(a[i]-b[j-1])); ans = min(ans, abs(a[i] - b[j])); } return ans; } int question(int x, int y, int v) { set<int> a, b; int a2, b2; tie(a2,a)=*--adj2[x].upper_bound(v); tie(b2,b)=*--adj2[y].upper_bound(v); auto it1 = adj[x].upper_bound(a2); auto it2 = adj[y].upper_bound(b2); while(it1!=adj[x].end()&&it1->first<=v) { int X = it1->second; if(a.count(X)) a.erase(X); else a.insert(X); it1++; } while(it2!=adj[y].end()&&it2->first<=v) { int X = it2->second; if(b.count(X)) b.erase(X); else b.insert(X); it2++; } vector<int> c, d; for(auto i: a) c.push_back(h[i]); for(auto i: b) d.push_back(h[i]); sort(c.begin(), c.end()); sort(d.begin(), d.end()); return calc(c,d); }

Compilation message (stderr)

potion.cpp: In function 'int calc(std::vector<int>, std::vector<int>)':
potion.cpp:33:29: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   33 |     for(int i = 0, j = 0; i < a.size() && j < b.size();i++) {
      |                           ~~^~~~~~~~~~
potion.cpp:33:45: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   33 |     for(int i = 0, j = 0; i < a.size() && j < b.size();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...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...