#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 (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)
{
if (N == 1)
{
return 0;
}
if (N == 2)
{
return ask(0, 1);
}
vi bucket, lis;
FOR(i, 0, N)
{
if (!lis.empty() && ask(lis.back(), i) != -1)
{
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
{
ckmax(maj, n);
if (SZ(lis) == 1)
{
bucket.PB(lis.back());
lis.pop_back();
}
else
{
lis.pop_back();
lis.pop_back();
}
}
}
if (bucket.empty()) return -1;
// cerr << "cand = " << cand << " maj = " << maj << endl;
return maj;
}
Compilation message
lokahia.cpp: In function 'int FindBase(int)':
lokahia.cpp:88:19: warning: unused variable 'num' [-Wunused-variable]
int maj = -1, num = 0;
^~~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
5 ms |
640 KB |
Wrong |
2 |
Correct |
5 ms |
640 KB |
Correct : C = 120 |
3 |
Correct |
5 ms |
640 KB |
Correct : C = 200 |
4 |
Correct |
5 ms |
640 KB |
Correct : C = 296 |
5 |
Incorrect |
5 ms |
640 KB |
Wrong |
6 |
Correct |
5 ms |
512 KB |
Correct : C = 0 |
7 |
Incorrect |
5 ms |
640 KB |
Wrong |
8 |
Correct |
5 ms |
640 KB |
Correct : C = 119 |
9 |
Incorrect |
5 ms |
640 KB |
Wrong |
10 |
Correct |
5 ms |
640 KB |
Correct : C = 200 |
11 |
Incorrect |
5 ms |
640 KB |
Wrong |
12 |
Incorrect |
5 ms |
640 KB |
Wrong |
13 |
Incorrect |
5 ms |
640 KB |
Wrong |
14 |
Incorrect |
5 ms |
640 KB |
Wrong |
15 |
Incorrect |
5 ms |
640 KB |
Wrong |
16 |
Incorrect |
5 ms |
640 KB |
Wrong |
17 |
Incorrect |
5 ms |
640 KB |
Wrong |
18 |
Correct |
5 ms |
640 KB |
Correct : C = 279 |
19 |
Incorrect |
5 ms |
512 KB |
Wrong |
20 |
Incorrect |
5 ms |
640 KB |
Wrong |
21 |
Correct |
5 ms |
640 KB |
Correct : C = 298 |
22 |
Correct |
5 ms |
640 KB |
Correct : C = 177 |
23 |
Correct |
5 ms |
640 KB |
Correct : C = 199 |
24 |
Correct |
5 ms |
640 KB |
Correct : C = 119 |
25 |
Incorrect |
5 ms |
640 KB |
Wrong |
26 |
Correct |
5 ms |
640 KB |
Correct : C = 199 |
27 |
Incorrect |
5 ms |
640 KB |
Wrong |