# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
162217 | HellAngel | Mousetrap (CEOI17_mousetrap) | C++14 | 1235 ms | 107728 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 int long long
using namespace std;
const int maxn = 1e6 + 7;
int FastIn()
{
char c;
while(true)
{
c = getchar();
if(c >= '0' && c <= '9') break;
}
int ans = c- '0';
while(true)
{
c = getchar();
if(c > '9' || c < '0') return ans;
ans = ans * 10 + c - '0';
}
}
int n, m, t, cnt, sum, dp[maxn];
multiset<int> st;
bool found;
vector<int> vt[maxn], path, gau[maxn];
void DFS(int u, int p)
{
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... |