Submission #592484

#TimeUsernameProblemLanguageResultExecution timeMemory
592484PiejanVDCStations (IOI20_stations)C++17
0 / 100
3037 ms2097152 KiB
#include <bits/stdc++.h>
#include "stations.h"
using namespace std;
 
vector<int>adj[1005];

vector<int>l;

int curr = 0;

void dfs(int u, bool f, int e = -1) {
    if(f)
        l[u] = curr++;
    
    for(auto z : adj[u]) if(z != e) {
        dfs(z, 1 - f, u);
    }

    if(!f)
        l[u] = curr++;
}

vector<int>label(int n, int k, vector<int>u, vector<int>v) {
    l.resize(n, -1);
    curr = 0;

    for(int i = 0 ; i < (int)u.size() ; i++) {
        adj[u[i]].push_back(v[i]);
        adj[v[i]].push_back(u[i]);
    }

    dfs(0, 1);

    return l;
}

int find_next_station(int s, int t, vector<int>c) {
    if(c.size() == 1)
        return c[0];

    if(s < c[0]) {
        for(int i = 1 ; i < c.size() ; i++)
            if(t > s && t <= c[i])
                return c[i];
    } else {
        for(int i = 1 ; i < c.size() ; i++)
            if(t < s && t >= c[i])
                return c[i];
    }

    return c[0];
}

Compilation message (stderr)

stations.cpp: In function 'int find_next_station(int, int, std::vector<int>)':
stations.cpp:42:27: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   42 |         for(int i = 1 ; i < c.size() ; i++)
      |                         ~~^~~~~~~~~~
stations.cpp:46:27: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   46 |         for(int i = 1 ; i < c.size() ; i++)
      |                         ~~^~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...