답안 #385691

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
385691 2021-04-04T18:03:27 Z Ahmadsm2005 기지국 (IOI20_stations) C++14
0 / 100
1071 ms 1064 KB
#include<bits/stdc++.h>
#include "stations.h"
using namespace std;
int C;
vector<vector<int>>edges;
vector<int>labels;
void DFS(int v,int u=-1){
int INIT=C;
for(int i=0;i<edges[v].size();i++){
C+=10001;
if(edges[v][i]!=u)
DFS(edges[v][i],v);
C-=10001;
C++;
}
C--;
labels[v]=100000000-C;
}
vector<int>label(int n,int k,vector<int>u,vector<int>v){
labels.clear();
labels.resize(n);
edges.resize(n);
for(int i=0;i<u.size();i++){
edges[u[i]].push_back(v[i]),edges[v[i]].push_back(u[i]);
}
DFS(0);
C=0;
edges.clear();
return labels;
}
int find_next_station(int s, int t,vector<int>c){
if((s/10001)<(t/10001))
return c.back();
for(int i=0;i<c.size();i++){
if(c[i]%10001>=t%10001)
return c[i];
}
return c.back();
}

Compilation message

stations.cpp: In function 'void DFS(int, int)':
stations.cpp:9:14: 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<edges[v].size();i++){
      |             ~^~~~~~~~~~~~~~~~
stations.cpp:8:5: warning: unused variable 'INIT' [-Wunused-variable]
    8 | int INIT=C;
      |     ^~~~
stations.cpp: In function 'std::vector<int> label(int, int, std::vector<int>, std::vector<int>)':
stations.cpp:23:14: 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:34:14: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   34 | for(int i=0;i<c.size();i++){
      |             ~^~~~~~~~~
# 결과 실행 시간 메모리 Grader output
1 Incorrect 4 ms 492 KB Invalid labels (values out of range). scenario=0, k=1000, vertex=0, label=99999992
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 6 ms 592 KB Invalid labels (values out of range). scenario=0, k=1000, vertex=0, label=99999006
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 4 ms 492 KB Invalid labels (values out of range). scenario=0, k=1000000, vertex=0, label=100000000
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1071 ms 868 KB Output is correct
2 Correct 837 ms 756 KB Output is correct
3 Incorrect 627 ms 868 KB Wrong query response.
4 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 642 ms 1064 KB Wrong query response.
2 Halted 0 ms 0 KB -