Submission #922859

#TimeUsernameProblemLanguageResultExecution timeMemory
922859boris_mihovMinerals (JOI19_minerals)C++17
70 / 100
32 ms3540 KiB
#include "minerals.h" #include <algorithm> #include <iostream> #include <numeric> #include <cassert> #include <random> #include <vector> #include <queue> typedef long long llong; const int MAXN = 86000 + 10; const int INF = 1e9; int n; int with[MAXN]; int perm[MAXN]; bool isIn[MAXN]; std::vector <int> unique; std::vector <int> second; std::mt19937 rng(12345); int to[MAXN]; int countDiff; int query(int idx) { isIn[idx] ^= 1; return countDiff = Query(perm[idx]); } void answer(int a, int b) { Answer(perm[a], perm[b]); } void Solve(int N) { n = N; std::iota(perm + 1, perm + 1 + 2 * n, 1); std::shuffle(perm + 1, perm + 1 + 2 * n, rng); for (int i = 1 ; i <= 2 * n ; ++i) { int last = countDiff; if (unique.size() < n && (second.size() == n || query(i) > last)) { unique.push_back(i); } else { to[i] = unique.size(); second.push_back(i); } } assert(unique.size() == n); assert(second.size() == n); for (int bit = 0 ; (1 << bit) < n ; ++bit) { int cntIn = 0; int cntOut = 0; int min = INF; for (int i = 0 ; i < n ; ++i) { if (!((i & (1 << bit)) > 0) != isIn[unique[i]]) { query(unique[i]); } if (isIn[unique[i]]) { min = std::min(min, i); } cntIn += isIn[unique[i]]; cntOut += !isIn[unique[i]]; } for (int i = 0 ; i < n ; ++i) { if (cntIn == 0) { with[second[i]] |= (1 << bit); continue; } if (to[second[i]] < min) { with[second[i]] |= (1 << bit); cntOut--; continue; } if (cntOut == 0) { continue; } int curr = countDiff; int next = query(second[i]); if (curr == next) { cntIn--; } else { with[second[i]] |= (1 << bit); cntOut--; } } } for (int i = 0 ; i < n ; ++i) { answer(second[i], unique[with[second[i]]]); } }

Compilation message (stderr)

minerals.cpp: In function 'void Solve(int)':
minerals.cpp:44:27: warning: comparison of integer expressions of different signedness: 'std::vector<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
   44 |         if (unique.size() < n && (second.size() == n || query(i) > last))
      |             ~~~~~~~~~~~~~~^~~
minerals.cpp:44:49: warning: comparison of integer expressions of different signedness: 'std::vector<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
   44 |         if (unique.size() < n && (second.size() == n || query(i) > last))
      |                                   ~~~~~~~~~~~~~~^~~~
In file included from /usr/include/c++/10/cassert:44,
                 from minerals.cpp:5:
minerals.cpp:54:26: warning: comparison of integer expressions of different signedness: 'std::vector<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
   54 |     assert(unique.size() == n);
      |            ~~~~~~~~~~~~~~^~~~
minerals.cpp:55:26: warning: comparison of integer expressions of different signedness: 'std::vector<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
   55 |     assert(second.size() == n);
      |            ~~~~~~~~~~~~~~^~~~
#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...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...