Submission #345776

# Submission time Handle Problem Language Result Execution time Memory
345776 2021-01-08T03:57:32 Z daniel920712 Crocodile's Underground City (IOI11_crocodile) C++14
Compilation error
0 ms 0 KB
#include "crocodile.h"
#include <vector>
#include <utility>
#include <algorithm>
#include <queue>
#include <map>
using namespace std;
vector < pair < long long , long long > > Next[100005];
vector < pair < long long , long long > > Next2[100005];
map < long long , long long > how[100005];
long long F(long long fa,long long here)
{
    long long t;
    vector < long long > tt;
    if(is[here]) return 0;
    if(how[here].find(fa)!=how[here].end()) return how[here][fa];
    how[here][fa]=-1;
    for(auto i:Next[here])
    {
        if(i.first!=fa)
        {
            t=F(here,i.first);
            if(t!=-1&&t+i.second<=1000000000) tt.push_back(t+i.second);
        }
    }
    sort(tt.begin(),tt.end());
    if(tt.size()>=2) how[here][fa]=tt[1];
    else how[here][fa]=-1;
    return how[here][fa];
}
int travel_plan(int N, int M, int R[][2], int L[], int K, int P[])
{
    int i;
    long long a,b,c;
    for(i=0;i<M;i++)
    {
        Next[R[i][0]].push_back(make_pair((long long) R[i][1],(long long) L[i]));
        Next[R[i][1]].push_back(make_pair((long long) R[i][0],(long long) L[i]));

    }

    for(i=0;i<K;i++) is[P[i]]=1;
    return (int) F(-1,0);
}

Compilation message

crocodile.cpp: In function 'long long int F(long long int, long long int)':
crocodile.cpp:15:8: error: 'is' was not declared in this scope
   15 |     if(is[here]) return 0;
      |        ^~
crocodile.cpp: In function 'int travel_plan(int, int, int (*)[2], int*, int, int*)':
crocodile.cpp:42:22: error: 'is' was not declared in this scope; did you mean 'i'?
   42 |     for(i=0;i<K;i++) is[P[i]]=1;
      |                      ^~
      |                      i
crocodile.cpp:34:15: warning: unused variable 'a' [-Wunused-variable]
   34 |     long long a,b,c;
      |               ^
crocodile.cpp:34:17: warning: unused variable 'b' [-Wunused-variable]
   34 |     long long a,b,c;
      |                 ^
crocodile.cpp:34:19: warning: unused variable 'c' [-Wunused-variable]
   34 |     long long a,b,c;
      |                   ^