# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
37674 | wasyl | Deda (COCI17_deda) | C++11 | 416 ms | 14100 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 <set>
#include <vector>
#include <cstdio>
#include <climits>
#include <algorithm>
#define d(...) __VA_ARGS__
#define all(x) (x).begin(), (x).end()
#define eb(...) emplace_back(__VA_ARGS__)
using namespace std;using ll=long long;
template<class t>using V = vector< t >;
struct Ev
{
bool typ;
int nr, val, id;
Ev( bool typ, int nr, int val, int id ) :
typ( typ ), nr( nr ), val( val ), id( id ) {}
};
inline bool operator< ( const Ev& mn, const Ev& wc )
{
return mn.val == wc.val?( mn.nr == wc.nr?
mn.typ < wc.typ : mn.nr > wc.nr ) : mn.val < wc.val;
}
int n, q;
V< Ev > evs;
V< int > odp;
void foo ( int l, int p )
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |