# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1171641 | Perl32 | Tourism (JOI23_tourism) | C++20 | 594 ms | 55572 KiB |
//I wrote this code 4 u <3
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#ifdef LOCAL
#include "algo/debug.h"
#else
#define debug(...) 42
#endif
const int inf = 0x3f3f3f3f;
struct Info {
int dep = inf, i = -1;
Info() = default;
Info(int _dep, int _i) : dep(_dep), i(_i) {}
};
Info operator+(const Info& a, const Info& b) {
Info res;
if (a.dep < b.dep) res = a;
else res = b;
return res;
}
struct SPT {
vector<vector<Info>> mat;
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |