Submission #991070

# Submission time Handle Problem Language Result Execution time Memory
991070 2024-06-01T08:20:06 Z borisAngelov Traffic (IOI10_traffic) C++17
0 / 100
4 ms 31324 KB
#include "traffic.h"
#include <bits/stdc++.h>

using namespace std;

const int maxn = 1000005;
const long long inf = (1LL << 60);

int n;
int a[maxn];

vector<int> g[maxn];

long long sum = 0;
long long ans = inf;

void dfs(int node, int par, int dep)
{
    sum += (1LL * a[node]) * (1LL * dep);

    for (int i = 0; i < g[node].size(); ++i)
    {
        if (g[node][i] != par)
        {
            dfs(g[node][i], node, dep + 1);
        }
    }
}

int LocateCentre(int N, int pp[], int S[], int D[])
{
    n = N;

    for (int i = 1; i <= n; ++i)
    {
        a[i] = pp[i - 1];

        if (i == n)
        {
            break;
        }

        int x = S[i - 1];
        int y = D[i - 1];

        ++x;
        ++y;

        g[x].push_back(y);
        g[y].push_back(x);
    }

    for (int i = 1; i <= n; ++i)
    {
        sum = 0;
        dfs(i, -1, 0);
        ans = min(ans, sum);
    }

    return ans;
}

Compilation message

traffic.cpp: In function 'void dfs(int, int, int)':
traffic.cpp:21:23: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   21 |     for (int i = 0; i < g[node].size(); ++i)
      |                     ~~^~~~~~~~~~~~~~~~
# Verdict Execution time Memory Grader output
1 Incorrect 4 ms 31324 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 4 ms 31324 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 4 ms 31324 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 4 ms 31324 KB Output isn't correct
2 Halted 0 ms 0 KB -