Submission #1075500

# Submission time Handle Problem Language Result Execution time Memory
1075500 2024-08-26T07:06:48 Z c2zi6 Closing Time (IOI23_closing) C++17
8 / 100
117 ms 39100 KB
#define _USE_MATH_DEFINES
#include <bits/stdc++.h>
#define ff first
#define ss second
#define pb push_back
#define all(a) (a).begin(), (a).end()
#define replr(i, a, b) for (int i = int(a); i <= int(b); ++i)
#define reprl(i, a, b) for (int i = int(a); i >= int(b); --i)
#define rep(i, n) for (int i = 0; i < int(n); ++i)
#define mkp(a, b) make_pair(a, b)
using namespace std;
typedef long long ll;
typedef long double ld;
typedef pair<int, int> PII;
typedef vector<int> VI;
typedef vector<PII> VPI;
typedef vector<VI> VVI;
typedef vector<VVI> VVVI;
typedef vector<VPI> VVPI;
typedef pair<ll, ll> PLL;
typedef vector<ll> VL;
typedef vector<PLL> VPL;
typedef vector<VL> VVL;
typedef vector<VVL> VVVL;
typedef vector<VPL> VVPL;
template<class T> T setmax(T& a, T b) {if (a < b) return a = b; return a;}
template<class T> T setmin(T& a, T b) {if (a < b) return a; return a = b;}
#include <ext/pb_ds/assoc_container.hpp>
using namespace __gnu_pbds;
template<class T>
using indset = tree<T, null_type, less<T>, rb_tree_tag, tree_order_statistics_node_update>;
#include "closing.h"

namespace TEST1 {
    int n;
    VVPI gp;
    void dfs(VL& dist, int u, int p = -1) {
        for (auto[v, w] : gp[u]) if (v != p) {
            dist[v] = dist[u] + w;
            dfs(dist, v, u);
        }
    }
    int max_score(int N, int X, int Y, ll K, VI U, VI V, VI W) {
        n = N;
        gp = VVPI(n);
        rep(i, n-1) {
            auto[u, v, w] = make_tuple(U[i], V[i], W[i]);
            gp[u].pb({v, w});
            gp[v].pb({u, w});
        }
        VL distx, disty;
        distx = disty = VL(n);
        dfs(distx, X);
        dfs(disty, Y);
        VL a;
        for (ll x : distx) a.pb(x);
        for (ll x : disty) a.pb(x);
        sort(all(a));
        a.pb(2e18);
        int ans = 0;
        for (ll x : a) {
            if (x <= K) {
                K -= x;
                ans++;
            } else break;
        }
        return ans;
    }
};

int max_score(int N, int X, int Y, ll K, VI U, VI V, VI W) {
    return TEST1::max_score(N, X, Y, K, U, V, W);
    return 0;
}



# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 348 KB 1st lines differ - on the 1st token, expected: '6', found: '5'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 109 ms 34760 KB Output is correct
2 Correct 117 ms 39100 KB Output is correct
3 Correct 68 ms 5456 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 1 ms 344 KB Output is correct
2 Incorrect 1 ms 604 KB 1st lines differ - on the 1st token, expected: '30', found: '24'
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 1 ms 344 KB Output is correct
2 Incorrect 1 ms 604 KB 1st lines differ - on the 1st token, expected: '30', found: '24'
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 1 ms 344 KB Output is correct
2 Incorrect 1 ms 604 KB 1st lines differ - on the 1st token, expected: '30', found: '24'
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 348 KB 1st lines differ - on the 1st token, expected: '6', found: '5'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 348 KB 1st lines differ - on the 1st token, expected: '6', found: '5'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 348 KB 1st lines differ - on the 1st token, expected: '6', found: '5'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 348 KB 1st lines differ - on the 1st token, expected: '6', found: '5'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 348 KB 1st lines differ - on the 1st token, expected: '6', found: '5'
2 Halted 0 ms 0 KB -