# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
290620 | PeppaPig | Naan (JOI19_naan) | C++14 | 819 ms | 116728 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>
#define long long long
using namespace std;
const int N = 2e3 + 5;
struct Fraction {
long x, y;
Fraction() {}
Fraction(long x, long y) : x(x), y(y) {}
friend bool operator<(const Fraction &a, const Fraction &b) {
if(a.x / a.y != b.x / b.y) return a.x / a.y < b.x / b.y;
return (a.x % a.y) * b.y < (b.x % b.y) * a.y;
}
} pos[N][N];
int n, m;
int ans[N], chk[N];
long v[N][N];
Fraction get_pos(int idx, long x, long y) {
int l = 1, r = m;
while(l < r) {
int mid = (l + r) >> 1;
if(v[idx][mid] * y > x) r = mid;
else l = mid + 1;
}
x -= v[idx][r - 1] * y;
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... |