제출 #97149

#제출 시각아이디문제언어결과실행 시간메모리
97149maruiiSnowy Roads (JOI16_snowy)C++17
0 / 100
15 ms1560 KiB
#include "Anyalib.h"
#include <bits/stdc++.h>
using namespace std;
#define ff first
#define ss second
vector<int> edge[500];
int A[500], B[500], prt[500], N;
static int getL;
void dfs(int x){
	for(auto &i: edge[x]){
		if(prt[x]==i) continue;
		prt[i] = x;
		dfs(i);
	}
}
void InitAnya(int N_ , int AA[] , int BB[]) {
	N = N_;
	for(int i=0; i<N; ++i) edge[i].clear();
	for(int i=0; i<N-1; ++i){
		A[i] = AA[i], B[i] = BB[i];
		edge[A[i]].push_back(B[i]);
		edge[B[i]].push_back(A[i]);
	}
	for(int i=0; i<N; ++i) sort(edge[i].begin(), edge[i].end());
	dfs(0);
}
void Anya(int C[]) {
	for(int i=0; i<N; ++i) Save(prt[A[i]]==B[i]?A[i]:B[i], C[i]);
}
#include "Borislib.h"
#include <bits/stdc++.h>
using namespace std;
#define ff first
#define ss second
vector<int> edge[500];
int A[500], B[500], prt[500];
static int getL;
void dfs(int x){
	for(auto &i: edge[x]){
		if(prt[x]==i) continue;
		prt[i] = x;
		dfs(i);
	}
}
void InitBoris(int N , int AA[] , int BB[]) {
	for(int i=0; i<N; ++i) edge[i].clear();
	for(int i=0; i<N-1; ++i){
		A[i] = AA[i], B[i] = BB[i];
		edge[A[i]].push_back(B[i]);
		edge[B[i]].push_back(A[i]);
	}
	for(int i=0; i<N; ++i) sort(edge[i].begin(), edge[i].end());
	dfs(0);
}

int Boris(int city) {
	int ret = 0;
	while(city) ret += Ask(city), city = prt[city];
	return Ask(city);
}

컴파일 시 표준 에러 (stderr) 메시지

Anya.cpp:8:12: warning: 'getL' defined but not used [-Wunused-variable]
 static int getL;
            ^~~~

Boris.cpp:8:12: warning: 'getL' defined but not used [-Wunused-variable]
 static int getL;
            ^~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...