Submission #229311

#TimeUsernameProblemLanguageResultExecution timeMemory
229311534351Lokahian Relics (FXCUP4_lokahia)C++17
77 / 100
7 ms640 KiB
#include "lokahia.h" #include <bits/stdc++.h> using namespace std; template<class T, class U> void ckmin(T &a, U b) { if (a > b) a = b; } template<class T, class U> void ckmax(T &a, U b) { if (a < b) a = b; } #define MP make_pair #define PB push_back #define LB lower_bound #define UB upper_bound #define fi first #define se second #define SZ(x) ((int) (x).size()) #define ALL(x) (x).begin(), (x).end() #define FOR(i, a, b) for (auto i = (a); i < (b); i++) #define FORD(i, a, b) for (auto i = (a) - 1; i >= (b); i--) typedef long long ll; typedef long double ld; typedef pair<int, int> pii; typedef pair<ll, ll> pll; typedef vector<int> vi; typedef vector<ll> vl; typedef vector<pii> vpi; typedef vector<pll> vpl; map<int, int> mp[213]; int ask(int i, int j) { if (mp[i].count(j)) { return mp[i][j]; } int res = CollectRelics(i, j); mp[i][j] = res; mp[j][i] = res; return res; } int FindBase(int N) { if (N == 1) { return 0; } if (N == 2) { return ask(0, 1); } int maj = -1, cnt = 0; FOR(i, 0, N - 1) { if (cnt == 0) { maj = i; cnt++; } else { int w = ask(maj, i); if (w == -1) { cnt--; } else { maj = i; cnt++; } } } if (cnt == 0) maj = N - 1; cnt = 1; int net = 1; int res = maj; int mx = -1; FOR(i, 0, N) { if (i == maj) continue; int w = ask(maj, i); if (w != -1) { ckmax(mx, w); cnt++; if (w == res) { net++; } else { net--; if (net == 0) { res = w; net = 1; } } } } if (cnt <= N / 2) return -1; assert(mx == res); return res; }
#Verdict Execution timeMemoryGrader output
Fetching results...