# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1057619 | Celebi_276 | Palembang Bridges (APIO15_bridge) | C++17 | 53 ms | 7944 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;
#define PrintDec(d, c) cout << fixed << setprecision(c) << d
#define MultiTest(q) long long q; cin >> q; while (q--)
#define rall(v) v.rbegin(), v.rend()
#define all(v) v.begin(), v.end()
#define endl "\n"
#define NAME "BRIDGES"
#define ull unsigned long long int
#define ll long long int
#define pii pair <int, int>
#define pll pair <ll, ll>
bool minimize (ll &a, ll b) {
if (a > b) {
return a = b, true;
}
return false;
}
bool maximize (ll &a, ll b) {
if (a < b) {
return a = b, true;
}
return false;
}
struct Pedestrian {
int s, t;
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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |