Submission #1083152

#TimeUsernameProblemLanguageResultExecution timeMemory
1083152Math4Life2020Simurgh (IOI17_simurgh)C++17
Compilation error
0 ms0 KiB
#include <bits/stdc++.h>
using namespace std;

using ll = long long; using pii = pair<ll,ll>;

ll minimum_walk(int p[], int s) {
	ll N = sizeof(p);
	assert(s==0);
	ll ans = 0;
	bool found[N];
	for (ll i=0;i<N;i++) {
		found[i]=0;
	}
	ll D = 0;
	for (ll i=0;i<N;i++) {
		if (!found[i]) {
			ll j = i;
			ll dmin = 1e8;
			do {
				found[j]=1;
				dmin = min(dmin,j);
				ans += abs(p[j]-j);
				j = p[j];
			} while (j != i);
			D = max(D,dmin);
		}
	}
	ans -= 2*D;
	return ans;
}

Compilation message (stderr)

simurgh.cpp: In function 'll minimum_walk(int*, int)':
simurgh.cpp:7:16: warning: 'sizeof' on array function parameter 'p' will return size of 'int*' [-Wsizeof-array-argument]
    7 |  ll N = sizeof(p);
      |               ~^~
simurgh.cpp:6:21: note: declared here
    6 | ll minimum_walk(int p[], int s) {
      |                 ~~~~^~~
/usr/bin/ld: /tmp/ccrowN52.o: in function `main':
grader.cpp:(.text.startup+0x2ef): undefined reference to `find_roads(int, std::vector<int, std::allocator<int> >, std::vector<int, std::allocator<int> >)'
collect2: error: ld returned 1 exit status