Submission #781143

#TimeUsernameProblemLanguageResultExecution timeMemory
781143BoasXylophone (JOI18_xylophone)C++17
100 / 100
580 ms664 KiB
//#define _CRT_SECURE_NO_WARNINGS //#include "grader.cpp" #include "xylophone.h" using namespace std; #include <vector> #include <bitset> #include <unordered_map> typedef vector<int> vi; typedef pair<int, int> pii; struct pairhash { public: template <typename T, typename U> size_t operator()(const pair<T, U>& x) const { return hash<T>()(x.first) * 100003 ^ hash<U>()(x.second); } }; unordered_map<pii, int, pairhash> queries; int ownQuery(int a, int b) { if (queries.find({ a, b }) != queries.end()) { return queries[{a, b}]; } return queries[{a, b}] = query(a, b); } void queryAndProcess(const int& i, const int& d, bool& canProgress, const int& N, bitset<5001>& notFound, vi& values, const bool& doExtra) { if (i + d > N || i + d <= 0) return; if (values[i] == -1) return; if (values[i + d] != -1) return; int v = d > 0 ? ownQuery(i, i + d) : ownQuery(i + d, i); int opt1 = values[i] + v; int opt2 = values[i] - v; int result = 0; // 1 = opt1, 2 = opt2, 0 is unknown if (opt1 < 1) result = 2; else if (opt2 < 1) result = 1; else if (opt1 > N) result = 2; else if (opt2 > N) result = 1; else if (!notFound[opt1]) result = 2; else if (!notFound[opt2]) result = 1; if (result == 0) { if (!doExtra) return; int v2 = d > 0 ? query(i - d, i + d) : query(i + d, i - d); int ma = max(values[i - d], values[i]); int mi = min(values[i - d], values[i]); int v2Opt1 = max(opt1, ma) - min(opt1, mi); int v2Opt2 = max(opt2, ma) - min(opt2, mi); result = v2 == v2Opt1 ? 1 : 2; } if (result == 1) { values[i + d] = opt1; notFound[opt1] = false; } else { values[i + d] = opt2; notFound[opt2] = false; } canProgress = true; } void solve(int N) { int a = 1, b = N; while (a < b) { int k = (a + b) / 2; int value = ownQuery(1, k); if (value == N - 1) b = k; else a = k + 1; } int maxIndex = a; a = 1, b = maxIndex - 1; while (a < b) { int k = (a + b + 1) / 2; int value = ownQuery(k, maxIndex); if (value == N - 1) a = k; else b = k - 1; } int oneIndex = a; bitset<5001> notFound; for (int i = 2; i < N; i++) notFound[i] = true; vi values(N + 1, -1); values[oneIndex] = 1; values[maxIndex] = N; bool canProgress = true; while (canProgress) { canProgress = false; for (int i = 1; i <= N; i++) { queryAndProcess(i, -1, canProgress, N, notFound, values, false); queryAndProcess(i, 1, canProgress, N, notFound, values, false); if (notFound.none()) break; } } canProgress = !notFound.none(); while (canProgress) { canProgress = false; for (int i = 1; i <= N; i++) { queryAndProcess(i, -1, canProgress, N, notFound, values, true); queryAndProcess(i, 1, canProgress, N, notFound, values, true); if (notFound.none()) break; } } for (int i = 1; i <= N; i++) { if (values[i] == -1) throw; answer(i, values[i]); } }

Compilation message (stderr)

xylophone.cpp: In function 'void queryAndProcess(const int&, const int&, bool&, const int&, std::bitset<5001>&, vi&, const bool&)':
xylophone.cpp:54:7: warning: unused variable 'v2Opt2' [-Wunused-variable]
   54 |   int v2Opt2 = max(opt2, ma) - min(opt2, mi);
      |       ^~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...