Submission #481593

#TimeUsernameProblemLanguageResultExecution timeMemory
481593ssenseTraffic (IOI10_traffic)C++14
Compilation error
0 ms0 KiB
#include <bits/stdc++.h>
#include "traffic.h"
#define startt ios_base::sync_with_stdio(false);cin.tie(0);
typedef long long  ll;
using namespace std;
#define vint vector<int>
#define all(v) v.begin(), v.end()
#define MOD 1000000007
#define MOD2 998244353
#define MX 1000000000
#define MXL 1000000000000000000
#define PI (ld)2*acos(0.0)
#define nax 200005
#define pb push_back
#define sc second
#define fr first
//#define int long long
#define endl '\n'
#define ld long double
#define NO cout << "NO" << endl
#define YES cout << "YES" << endl
																																						int ceildiv(int one, int two) {if (one % two == 0) {return one / two;}else {return one / two + 1;}} int power(int n, int pow, int m) {if (pow == 0) return 1;if (pow % 2 == 0) {ll x = power(n, pow / 2, m);return (x * x) % m;}else return (power(n, pow - 1, m) * n) % m;} int gcd(int a, int b) { if (!b)return a; return gcd(b, a % b);} int factorial(int n, int mod) {if (n > 1)return (n * factorial(n - 1, mod)) % mod; else return 1;} int lcm(int a, int b) {return (a * b) / gcd(a, b);} vector<int> read(int n) {vector<int> a; for (int i = 0; i < n; i++) { int x; cin >> x; a.pb(x);} return a;}//ssense
vector<vint> adj;

void LocateCentre(int n, int p[], int s[], int d[])
{
	ll sum1 = 0;
	for(int i = 1; i < n; i++)
	{
		sum1 += p[i];
	}
	ll sum2 = 0;
	long long ans = MXL;
	for(int i = 0; i < n; i++)
	{
		ll now = max(sum2, sum1);
		ans = min(ans, 1LL*now);
		if(i == n-1)
		{
			break;
		}
		sum2+=p[i];
		sum1-=p[i+1];
	}
	cout << ans << endl;
}
 
int32_t main(){
	startt;
	int t = 1;
	//cin >> t;
	while (t--)
	{
		solve();
	}
}
/*
 
 */

Compilation message (stderr)

traffic.cpp:25:6: error: ambiguating new declaration of 'void LocateCentre(int, int*, int*, int*)'
   25 | void LocateCentre(int n, int p[], int s[], int d[])
      |      ^~~~~~~~~~~~
In file included from traffic.cpp:2:
traffic.h:1:5: note: old declaration 'int LocateCentre(int, int*, int*, int*)'
    1 | int LocateCentre(int N, int P[], int S[], int D[]);
      |     ^~~~~~~~~~~~
traffic.cpp: In function 'int32_t main()':
traffic.cpp:54:3: error: 'solve' was not declared in this scope
   54 |   solve();
      |   ^~~~~