# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
15888 | ggoh | Dreaming (IOI13_dreaming) | C++98 | 105 ms | 12340 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 "dreaming.h"
#include<cstdio>
#include<vector>
#include<algorithm>
struct AA{
int to,cost;
};
std::vector<AA>G[100002];
int ans,i,m,t,st[100002],back[100002],pos,len,K;
bool v[100002],vv[100002];
void dfs(int x,int l)
{
for(int j=0;j<G[x].size();j++)
{
AA u=G[x][j];
if(!v[u.to])
{
if(m<=l+u.cost)
{
pos=u.to;m=l+u.cost;
}
v[u.to]=1;
dfs(u.to,l+u.cost);
}
}
}
void dfs2(int x,int l)
{
for(int j=0;j<G[x].size();j++)
{
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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |