Submission #1083151

#TimeUsernameProblemLanguageResultExecution timeMemory
1083151Math4Life2020Simurgh (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:6:23: error: expected ',' or '...' before 'p'
    6 | ll minimum_walk(int[] p, int s) {
      |                       ^
simurgh.cpp: In function 'll minimum_walk(int*)':
simurgh.cpp:7:16: error: 'p' was not declared in this scope
    7 |  ll N = sizeof(p);
      |                ^
In file included from /usr/include/c++/10/cassert:44,
                 from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:33,
                 from simurgh.cpp:1:
simurgh.cpp:8:9: error: 's' was not declared in this scope
    8 |  assert(s==0);
      |         ^