Submission #97147

#TimeUsernameProblemLanguageResultExecution timeMemory
97147maruiiSnowy Roads (JOI16_snowy)C++11
0 / 100
14 ms1828 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; ++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; ++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); }

Compilation message (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...