Submission #130405

# Submission time Handle Problem Language Result Execution time Memory
130405 2019-07-15T06:54:16 Z 김세빈(#3148) Information (CEOI08_information) C++14
Compilation error
0 ms 0 KB
#include <bits/stdc++.h>

using namespace std;

vector <int> G[2020];
vector <int> A, B;
int P[2020], V[1010101];
bool chk1[2020], chk2[1010101];
int n, m, x;

void dfs1(int p, int r)
{
	chk1[p] = 1;
	
	if(r){
		A.push_back(r);
		chk2[r] = 1;
	}
	
	for(int &t: G[p]){
		if(!chk1[V[t]]){
			dfs1(V[t], t);
		}
	}
}

void dfs2(int p, int r)
{
	chk1[p] = 0;
	
	if(r){
		B.push_back(r);
	}
	
	for(int &t: G[p]){
		if(!chk2[t] && chk1[V[t]]){
			dfs2(V[t], t);
		}
	}
}

int main()
{
	int i, u;
	
	scanf("%d%d", &n, &m);s
	
	for(i=1; i<=m; i++){
		scanf("%d%d", &u, V + i);
		G[u].emplace_back(i);
	}
	
	dfs1(1, 0); dfs2(1, 0);
	
	if(A.size() != n - 1 || B.size() != n - 1){
		return 1 / 0;
		printf("NONE\n");
	}
	else{
		for(int &t: A){
			printf("%d ", t);
		}
		
		printf("\n");
		
		for(int &t: B){
			printf("%d ", t);
		}
		
		printf("\n");
	}
	
	return 0;
}

Compilation message

information.cpp: In function 'int main()':
information.cpp:46:24: error: 's' was not declared in this scope
  scanf("%d%d", &n, &m);s
                        ^
information.cpp:48:12: warning: statement has no effect [-Wunused-value]
  for(i=1; i<=m; i++){
           ~^~~
information.cpp:48:20: error: expected ';' before ')' token
  for(i=1; i<=m; i++){
                    ^
information.cpp:55:14: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  if(A.size() != n - 1 || B.size() != n - 1){
     ~~~~~~~~~^~~~~~~~
information.cpp:55:35: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  if(A.size() != n - 1 || B.size() != n - 1){
                          ~~~~~~~~~^~~~~~~~
information.cpp:56:12: warning: division by zero [-Wdiv-by-zero]
   return 1 / 0;
          ~~^~~
information.cpp:44:9: warning: unused variable 'u' [-Wunused-variable]
  int i, u;
         ^
information.cpp:46:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
  scanf("%d%d", &n, &m);s
  ~~~~~^~~~~~~~~~~~~~~~