Submission #979503

#TimeUsernameProblemLanguageResultExecution timeMemory
979503ducksaysquackSwapping Cities (APIO20_swap)C++17
Compilation error
0 ms0 KiB
#include "swap.h"
#include <bits/stdc++.h>
#define pb push_back
#define f first
#define s second
using namespace std;
int n;
vector<pair<int,pair<int,int>>> e;
vector<int> to(1e5+5);
void init(int N, int M, vector<int> U, vector<int> V, vector<int> W) {
	n = N, m = M;
	for(int i=0;i<m;i++) {e.pb({W[i],{U[i],V[i]}}); to[V[i]] = W[i];}
	sort(begin(e),end(e));
}
int getMinimumFuelCapacity(int x, int y) {
	if(n <= 3) return -1;
	if(x > y) swap(x,y);
	if(x == 0) {
		int cnt = 0, mx = to[y];
		for(int i=0;i<m;i++) if(e[i].s.s != y) {
			cnt++, mx = max(mx, e[i].f);
			if(cnt >= 2) return mx;
		}
	}
	else for(int i=0;i<m;i++) if(e[i].s.s != x && e[i].s.s != y) return max({to[x], to[y], e[i].f});
}

Compilation message (stderr)

swap.cpp: In function 'void init(int, int, std::vector<int>, std::vector<int>, std::vector<int>)':
swap.cpp:11:9: error: 'm' was not declared in this scope
   11 |  n = N, m = M;
      |         ^
swap.cpp: In function 'int getMinimumFuelCapacity(int, int)':
swap.cpp:20:17: error: 'm' was not declared in this scope
   20 |   for(int i=0;i<m;i++) if(e[i].s.s != y) {
      |                 ^
swap.cpp:25:21: error: 'm' was not declared in this scope
   25 |  else for(int i=0;i<m;i++) if(e[i].s.s != x && e[i].s.s != y) return max({to[x], to[y], e[i].f});
      |                     ^