# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1176172 | gyg | Dungeons Game (IOI21_dungeons) | C++20 | 0 ms | 0 KiB |
#pragma GCC optimize("O3", "unroll-loops")
#pragma GCC target("avx2")
#include "dungeons.h"
#include <bits/stdc++.h>
using namespace std;
#define sig signed
#define int long long
#define vec vector
#define arr array
const int N = 4e5 + 5, LG = 27, INF = 1e18;
int n;
arr<int, N> wn, ls, wn_nd, ls_nd;
vec<int> un;
int id(int x) {
int ans = 0;
for (int i = 0; i < un.size(); i++)
if (x >= un[i]) ans = i;
return ans;
}
int nx(int i) {
if (i + 1 == un.size()) return INF;
else return un[i + 1];
}
void unq_cmp() {
un.push_back(0);
for (int u = 0; u < n; u++) un.push_back(wn[u]);
un.erase(unique(un.begin(), un.end()), un.end());