# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
361928 | AlexLuchianov | Fortune Telling 2 (JOI14_fortune_telling2) | C++14 | 688 ms | 22920 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 <iostream>
#include <vector>
#include <algorithm>
#include <cassert>
#include <cmath>
using ll = long long;
#define MIN(a, b) (((a) < (b)) ? (a) : (b))
#define MAX(a, b) (((a) < (b)) ? (b) : (a))
int const nmax = 200000;
int const inf = 1000000000;
struct Card{
int x;
int y;
int id;
bool operator < (Card oth) const {
return y < oth.y;
}
} v[1 + nmax];
int base[1 + nmax];
struct Node{
int smin;
int coef;
int id;
Node operator + (Node const oth) const{
Node result;
if(smin <= oth.smin) {
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... |