Submission #537717

# Submission time Handle Problem Language Result Execution time Memory
537717 2022-03-15T12:09:50 Z groshi Stations (IOI20_stations) C++17
0 / 100
701 ms 660 KB
#include<iostream>
#include<vector>
#include<algorithm>
#include<stations.h>
using namespace std;
int kiedy=1;
int odw[1010];
vector<int> Q[1010];
int moj_koniec[2000];
void dfs(int x)
{
    odw[x]=kiedy;
    kiedy++;
    for(int i=0;i<Q[x].size();i++)
    {
        int pom=Q[x][i];
        if(odw[pom]!=0)
            continue;
        dfs(pom);
    }
    moj_koniec[odw[x]]=kiedy-1;
}
vector<int> label(int n,int k,vector<int> u,vector<int> v)
{
    for(int i=0;i<=n+3;i++)
    {
        odw[i]=0;
        moj_koniec[i]=0;
    }
    for(int i=0;i<=n+3;i++)
        Q[i].clear();
    kiedy=1;
    for(int i=0;i<u.size();i++)
    {
        u[i]++;
        v[i]++;
        Q[u[i]].push_back(v[i]);
        Q[v[i]].push_back(u[i]);
    }
    dfs(1);
    vector<int> wypisz;
    for(int i=1;i<=n;i++)
        wypisz.push_back(odw[i]);
    return wypisz;
}
int find_next_station(int s,int t,vector<int> c)
{
    sort(c.begin(),c.end());
    if(t<s)
        return c[0];
    if(t>moj_koniec[s])
        return c[0];
    for(int i=1;i<c.size();i++)
    {
        if(t>=c[i] && t<=moj_koniec[c[i]])
            return c[i];
    }
    return c[0];
}

Compilation message

stations.cpp: In function 'void dfs(int)':
stations.cpp:14:18: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   14 |     for(int i=0;i<Q[x].size();i++)
      |                 ~^~~~~~~~~~~~
stations.cpp: In function 'std::vector<int> label(int, int, std::vector<int>, std::vector<int>)':
stations.cpp:33:18: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   33 |     for(int i=0;i<u.size();i++)
      |                 ~^~~~~~~~~
stations.cpp: In function 'int find_next_station(int, int, std::vector<int>)':
stations.cpp:53:18: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   53 |     for(int i=1;i<c.size();i++)
      |                 ~^~~~~~~~~
# Verdict Execution time Memory Grader output
1 Incorrect 437 ms 540 KB Wrong query response.
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 409 ms 544 KB Wrong query response.
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 463 ms 540 KB Wrong query response.
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 701 ms 660 KB Output is correct
2 Incorrect 585 ms 420 KB Wrong query response.
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 452 ms 656 KB Wrong query response.
2 Halted 0 ms 0 KB -