제출 #229317

#제출 시각아이디문제언어결과실행 시간메모리
229317534351로카히아 유적 (FXCUP4_lokahia)C++17
0 / 100
5 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; const int MAXN = 213; map<int, int> mp[MAXN]; int dsu[MAXN], stor[MAXN]; int get(int u) { return (u == dsu[u] ? u : dsu[u] = get(dsu[u])); } void merge(int u, int v) { u = get(u); v = get(v); if (u == v) return; ckmax(stor[u], stor[v]); dsu[v] = u; return; } int ask(int i, int j) { if (i == j) return i; if (mp[i].count(j)) { return mp[i][j]; } int res = CollectRelics(i, j); mp[i][j] = res; mp[j][i] = res; // cerr << "ask " << i << ' ' << j << " = " << res << endl; return res; } int FindBase(int N) { vi bucket, lis; FOR(i, 0, N) { if (!lis.empty() && ask(lis.back(), i) != -1) { int x = ask(lis.back(), i); merge(lis.back(), i); if (lis.back() != i) ckmax(stor[get(i)], x); bucket.PB(i); continue; } else { lis.PB(i); if (!bucket.empty()) { lis.PB(bucket.back()); bucket.pop_back(); } } } int cand = lis.back(); // for (int x : lis) // { // cerr << x << ' '; // } // cerr << endl; // cerr << "cand = " << bucket.back() << endl; int maj = -1, num = 0; while(!lis.empty()) { int n = ask(cand, lis.back()); if (n == -1) { lis.pop_back(); if (bucket.empty()) { break; } bucket.pop_back(); } else { merge(lis.back(), cand); if (lis.back() != cand) { ckmax(stor[get(cand)], n); } if (SZ(lis) == 1) { bucket.PB(lis.back()); lis.pop_back(); } else { lis.pop_back(); lis.pop_back(); } } } if (bucket.empty()) return -1; return stor[get(cand)]; // cerr << "cand = " << cand << " maj = " << maj << endl; }

컴파일 시 표준 에러 (stderr) 메시지

lokahia.cpp: In function 'int FindBase(int)':
lokahia.cpp:99:9: warning: unused variable 'maj' [-Wunused-variable]
     int maj = -1, num = 0;
         ^~~
lokahia.cpp:99:19: warning: unused variable 'num' [-Wunused-variable]
     int maj = -1, num = 0;
                   ^~~
#Verdict Execution timeMemoryGrader output
Fetching results...