답안 #1070778

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1070778 2024-08-22T18:20:42 Z MohamedFaresNebili 봉쇄 시간 (IOI23_closing) C++17
0 / 100
1000 ms 27728 KB
    #include <bits/stdc++.h>
    #include "closing.h"
     
            using namespace std;
     
            vector<pair<int, int>> adj[200005];
            long long D[200005][2];
            void dfs(int X, int p, int st) {
                for(auto u : adj[X]) {
                    if(u.first == p) continue;
                    D[u.first][st] = D[X][st] + u.second;
                    dfs(u.first, X, st);
                }
            }
     
            int max_score(int N, int X, int Y, long long K,
                vector<int> U, vector<int> V, vector<int> W) {
                for(int l = 0; l < N; l++) D[l][0] = D[l][1] = 1e9 + 7, adj[l].clear();
                for(int l = 0; l < N - 1; l++) {
                    adj[U[l]].push_back({V[l], W[l]});
                    adj[V[l]].push_back({U[l], W[l]});
                }
                if(X > Y) swap(X, Y);
                D[X][0] = 0, D[Y][1] = 0;
                dfs(X, X, 0); dfs(Y, Y, 1);
                int res = 0;
                for(int l = X; l >= 0; l--) {
                    for(int i = X; i < N; i++) {
                        for(int j = Y; j >= 0; j--) {
                            for(int e = Y; e < N; e++) {
                                int lo = max(l, j), hi = min(i, e);
                                long long calc = 0;
                                if(lo > hi) {
                                    for(int f = l; f <= i; f++)
                                        calc += D[f][0];
                                    for(int f = j; f <= e; f++)
                                        calc += D[f][1];
                                }
                                else {
                                    for(int f = l; f < lo; f++)
                                        calc += D[f][0];
                                    for(int f = lo; f <= hi; f++)
                                        calc += max(D[f][0], D[f][1]);
                                    for(int f = hi + 1; f <= e; f++)
                                        calc += D[f][1];
                                }
                                if(calc <= K) res = max(res,  i - l + e - j + 2);
                            }
                        }
                    }
                }
                return res;
            }
# 결과 실행 시간 메모리 Grader output
1 Incorrect 2 ms 5980 KB 1st lines differ - on the 1st token, expected: '6', found: '9'
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1012 ms 27728 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 2 ms 5980 KB 1st lines differ - on the 1st token, expected: '3', found: '4'
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 2 ms 5980 KB 1st lines differ - on the 1st token, expected: '3', found: '4'
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 2 ms 5980 KB 1st lines differ - on the 1st token, expected: '3', found: '4'
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 2 ms 5980 KB 1st lines differ - on the 1st token, expected: '6', found: '9'
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 2 ms 5980 KB 1st lines differ - on the 1st token, expected: '6', found: '9'
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 2 ms 5980 KB 1st lines differ - on the 1st token, expected: '6', found: '9'
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 2 ms 5980 KB 1st lines differ - on the 1st token, expected: '6', found: '9'
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 2 ms 5980 KB 1st lines differ - on the 1st token, expected: '6', found: '9'
2 Halted 0 ms 0 KB -