# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1044554 | juicy | Sightseeing in Kyoto (JOI22_kyoto) | C++17 | 107 ms | 12224 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
#ifdef LOCAL
#include "debug.h"
#else
#define debug(...) 42
#endif
using T = array<long long, 3>;
bool smaller(const T &a, const T &b) {
long long A = a[0] * b[1], B = a[1] * b[0];
return A == B ? a[2] < b[2] : A < B;
}
struct cmp {
bool operator()(const T &a, const T &b) const {
return smaller(a, b);
}
};
int main() {
ios::sync_with_stdio(false); cin.tie(nullptr);
int n, m; cin >> n >> m;
array<vector<int>, 2> a;
a[0].resize(n); a[1].resize(m);
auto nxt = a;
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |