답안 #364782

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
364782 2021-02-10T03:18:53 Z leinad2 기지국 (IOI20_stations) C++17
0 / 100
927 ms 1152 KB
#include "stations.h"
#include<bits/stdc++.h>
using namespace std;
vector<int>adj[1010];
int in[1010], out[1010], cnt, vis[1010];
void dfs(int v)
{
    in[v]=++cnt;
    for(int i=0;i<adj[v].size();i++)
    {
        int p=adj[v][i];
        if(!vis[p])
        {
            vis[p]=1;
            dfs(p);
        }
    }
    out[v]=cnt;
}
vector<int>label(int n, int k, vector<int>u, vector<int>v)
{
	vis[0]=1;
	for(int i=0;i<u.size();i++)
    {
        adj[u[i]].push_back(v[i]);
        adj[v[i]].push_back(u[i]);
    }
    dfs(0);
    vector<int>ans;
    for(int i=0;i<n;i++)ans.push_back(in[i]*1000+out[i]-1001);
    return ans;
}
int find_next_station(int s, int t, vector<int>c)
{
    int aa=s/1000;
    int bb=s%1000;
    int cc=t/1000;
    int dd=t%1000;
    if(cc<=aa&&bb<=dd||bb<cc||dd<aa)
    {
        for(int i=0;i<c.size();i++)
        {
            int ee=c[i]/1000;
            int ff=c[i]%1000;
            if(ee<=aa&&bb<=ff)return c[i];
        }
    }
    for(int i=0;i<c.size();i++)
    {
        int ee=c[i]/1000;
        int ff=c[i]%1000;
        if(ee<=cc&&dd<=ff&&!(ee<=aa&&bb<=ff))return c[i];
    }
}

Compilation message

stations.cpp: In function 'void dfs(int)':
stations.cpp:9:18: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
    9 |     for(int i=0;i<adj[v].size();i++)
      |                 ~^~~~~~~~~~~~~~
stations.cpp: In function 'std::vector<int> label(int, int, std::vector<int>, std::vector<int>)':
stations.cpp:23:15: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   23 |  for(int i=0;i<u.size();i++)
      |              ~^~~~~~~~~
stations.cpp: In function 'int find_next_station(int, int, std::vector<int>)':
stations.cpp:39:14: warning: suggest parentheses around '&&' within '||' [-Wparentheses]
   39 |     if(cc<=aa&&bb<=dd||bb<cc||dd<aa)
      |        ~~~~~~^~~~~~~~
stations.cpp:41:22: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   41 |         for(int i=0;i<c.size();i++)
      |                     ~^~~~~~~~~
stations.cpp:48:18: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   48 |     for(int i=0;i<c.size();i++)
      |                 ~^~~~~~~~~
stations.cpp:54:1: warning: control reaches end of non-void function [-Wreturn-type]
   54 | }
      | ^
# 결과 실행 시간 메모리 Grader output
1 Incorrect 3 ms 492 KB Invalid labels (values out of range). scenario=0, k=1000, vertex=1, label=6009
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 5 ms 492 KB Invalid labels (values out of range). scenario=0, k=1000, vertex=1, label=1511
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 4 ms 636 KB Invalid labels (values out of range). scenario=1, k=1000000, vertex=2, label=-1001
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 927 ms 736 KB Output is correct
2 Runtime error 2 ms 1152 KB Execution killed with signal 11
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 4 ms 492 KB Invalid labels (values out of range). scenario=1, k=1000000000, vertex=3, label=-1001
2 Halted 0 ms 0 KB -