Submission #989615

# Submission time Handle Problem Language Result Execution time Memory
989615 2024-05-28T12:10:52 Z sondos225 Crocodile's Underground City (IOI11_crocodile) C++17
46 / 100
5 ms 5468 KB
#include "crocodile.h"
#include <bits/stdc++.h>
using namespace std;
#ifdef LOCAL
#include "grader.cpp"
#endif // LOCAL
#define forr(x,i,n) for(int x=i; x<n; x++)
#define pb push_back
#define pii pair<int,int>
#define all(x) x.begin(),x.end()
#define fi first
#define se second
#define sz size()
bool vis[100000];
bool ex[100000];
//int routes[100000];
vector<pii> a[100000];
vector<int> dp[100000];
int dfs(int x)
{
    //cout<<x<<endl;
    if (ex[x])
    {
        return 0;
    }
   // if (routes[x]!=0) return routes[x];
        int ch1=1000000000, ch2=1000000000;
        forr(i,0,a[x].sz)
        {
            auto y=a[x][i];
            if (dp[x][i]==0){
            if (!vis[y.fi])
            {
                vis[y.fi]=1;

                int ch=(dfs(y.fi))+y.se;
                //cout<<x<<' '<<y.fi<<' '<<ch<<endl;
                dp[x][i]=ch;
                if (ch<=ch1 && ch<=ch2)
                {
                    ch2=ch1;
                    ch1=ch;
                }
                else if (ch>=ch1 && ch<=ch2)
                {
                    ch2=ch;
                }
                vis[y.fi]=0;
            }
            }
            else if (!vis[y.fi])
            {
                int ch=dp[x][i];
                if (ch<=ch1 && ch<=ch2)
                {
                    ch2=ch1;
                    ch1=ch;
                }
                else if (ch>=ch1 && ch<=ch2)
                {
                    ch2=ch;
                }
            }
        }
        //sort(all(ch));
       // if (ch2==INT_MAX) return ch1;
        return ch2;
        // routes[x]=
      //  ch2;
}
bool cmp(pii a, pii b)
{
    return a.se<b.se;
}
int travel_plan(int n, int m, int r[][2], int l[], int k, int e[])
{
    //r/l/k/e/
    forr(i,0,m)
    {
        int x=r[i][0];
        int y=r[i][1];
        a[x].pb({y,l[i]});
        a[y].pb({x,l[i]});
        dp[x].pb(0);
        dp[y].pb(0);
    }
    forr(i,0,n)
    {
        sort(all(a[i]),cmp);
    }
    forr(i,0,k) ex[e[i]]=1;
vis[0]=1;
  return dfs(0);
}


Compilation message

crocodile.cpp: In function 'int dfs(int)':
crocodile.cpp:7:35: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
    7 | #define forr(x,i,n) for(int x=i; x<n; x++)
      |                                   ^
crocodile.cpp:28:9: note: in expansion of macro 'forr'
   28 |         forr(i,0,a[x].sz)
      |         ^~~~
# Verdict Execution time Memory Grader output
1 Correct 2 ms 4956 KB Output is correct
2 Correct 2 ms 4956 KB Output is correct
3 Correct 2 ms 5212 KB Output is correct
4 Correct 2 ms 5212 KB Output is correct
5 Correct 2 ms 5212 KB Output is correct
6 Correct 2 ms 5208 KB Output is correct
7 Correct 2 ms 5212 KB Output is correct
8 Correct 3 ms 5212 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 2 ms 4956 KB Output is correct
2 Correct 2 ms 4956 KB Output is correct
3 Correct 2 ms 5212 KB Output is correct
4 Correct 2 ms 5212 KB Output is correct
5 Correct 2 ms 5212 KB Output is correct
6 Correct 2 ms 5208 KB Output is correct
7 Correct 2 ms 5212 KB Output is correct
8 Correct 3 ms 5212 KB Output is correct
9 Correct 5 ms 5468 KB Output is correct
10 Correct 2 ms 4956 KB Output is correct
11 Incorrect 3 ms 5212 KB Output isn't correct
12 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 2 ms 4956 KB Output is correct
2 Correct 2 ms 4956 KB Output is correct
3 Correct 2 ms 5212 KB Output is correct
4 Correct 2 ms 5212 KB Output is correct
5 Correct 2 ms 5212 KB Output is correct
6 Correct 2 ms 5208 KB Output is correct
7 Correct 2 ms 5212 KB Output is correct
8 Correct 3 ms 5212 KB Output is correct
9 Correct 5 ms 5468 KB Output is correct
10 Correct 2 ms 4956 KB Output is correct
11 Incorrect 3 ms 5212 KB Output isn't correct
12 Halted 0 ms 0 KB -