Submission #840878

# Submission time Handle Problem Language Result Execution time Memory
840878 2023-08-31T19:51:09 Z Mohmad_Zaid Closing Time (IOI23_closing) C++17
0 / 100
1000 ms 87512 KB
// #include "closing.h"
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define pb push_back

vector<vector<pair<int,int>>>g;
struct triple{
    int first,second;
    ll curr;
};
int max_score(int N, int X, int Y, long long K,vector<int> U, vector<int> V, vector<int> W)
{
    int n=N;
    set<ll>dis;
    g.resize(n,vector<pair<int,int>>());
    for(int i=0;i<n;i++){
        g[U[i]].pb({V[i],W[i]});
        g[V[i]].pb({U[i],W[i]});
    }
    queue<triple>q;
    triple one;
    one.first=X;
    one.second=X;
    one.curr=0;
    triple two;
    two.first=Y;
    two.second=Y;
    two.curr=0;
    q.push(one);
    q.push(two);
    while(!q.empty()){
        int p=q.front().first;
        int v=q.front().second;
        ll cur=q.front().curr;
        q.pop();
        for(auto i:g[v]){
            if(i.first==p)continue;
            // if(cur+i.second>K)break;
            dis.insert(cur+i.second);
            triple temp;
            temp.first=v;
            temp.second=i.first;
            temp.curr=i.second+cur;
            q.push(temp);
        }
    }
    int ans=0;
    for(auto i:dis){
        if(i>K)break;
        ans++;
        K-=i;
    }

    return ans+2;
}
# Verdict Execution time Memory Grader output
1 Runtime error 1 ms 340 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 274 ms 54632 KB Output is correct
2 Correct 271 ms 54248 KB Output is correct
3 Execution timed out 1078 ms 87512 KB Time limit exceeded
4 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 1 ms 340 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 1 ms 340 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 1 ms 340 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 1 ms 340 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 1 ms 340 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 1 ms 340 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 1 ms 340 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 1 ms 340 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -