QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#291924 | #7118. Closing Time | Feet_McYeet | 0 | 120ms | 31284kb | C++17 | 2.3kb | 2023-12-27 13:44:34 | 2024-04-28 08:00:33 |
Judging History
answer
// #include "closing.h"
#include <bits/stdc++.h>
using namespace std;
// #pragma GCC optimize ("Ofast")
// #pragma GCC target ("avx2")
typedef long long ll;
typedef pair<int, int> pii;
typedef pair<long long, long long> pll;
#define el << '\n'
#define nl cout << '\n'
#define spc << ' '
#define forn(i,n) for (int i=0; i<n; i++)
#define forl(i,s,e) for (int i=s; i<e; i++)
#define pb push_back
#define fi first
#define se second
#define rsz resize
#define sz(x) ((int) x.size())
#define all(x) x.begin(), x.end()
int max_score(int N, int X, int Y, ll K, vector<int> U, vector<int> V, vector<int> W) {
vector<pll> dis(N);
vector<vector<pll>> adj(N);
struct st {
int cn, pn; ll d; bool p;
};
// void dfs(int cn, int pn, ll d, bool p) {
// if (p) dis[cn].se = d;
// else dis[cn].fi = d;
// for (pii i : adj[cn]) if (i.fi != pn) dfs(i.fi, cn, d+i.se, p);
// }
forn(i,N-1) {
adj[U[i]].pb({V[i], W[i]});
adj[V[i]].pb({U[i], W[i]});
}
vector<st> stk;
stk.pb({X, -1, 0, 0});
while (sz(stk)) {
st a = stk.back();
stk.pop_back();
if (a.p) dis[a.cn].se = a.d;
else dis[a.cn].fi = a.d;
for (pii i : adj[a.cn]) if (i.fi != a.pn) stk.pb({i.fi, a.cn, a.d+i.se, a.p});
}
stk.pb({Y, -1, 0, 1});
while (sz(stk)) {
st a = stk.back();
stk.pop_back();
if (a.p) dis[a.cn].se = a.d;
else dis[a.cn].fi = a.d;
for (pii i : adj[a.cn]) if (i.fi != a.pn) stk.pb({i.fi, a.cn, a.d+i.se, a.p});
}
forn(i,N) if (dis[i].fi < dis[i].se) swap(dis[i].fi, dis[i].se);
sort(all(dis));
vector<bool> u(N);
forn(i,N) u[i] = false;
priority_queue<pair<ll, int>, vector<pair<ll, int>>, greater<pair<ll, int>>> pq;
priority_queue<pair<ll, int>> rpq;
// forn(i,N) cout << dis[i].fi spc << dis[i].se el;
// nl;
forn(i,N) pq.push({dis[i].se, i});
int tot = 0;
while (1) {
ll temp = K - pq.top().fi;
if (temp < 0) break;
u[pq.top().se] = 1;
rpq.push(pq.top());
pq.pop();
K = temp;
tot++;
}
// cout << K spc << tot el;
int ans = tot;
forn(i,N) {
if (u[i]) {
K += dis[i].se;
tot--;
}
K -= dis[i].fi;
tot += 2;
bool temp = false;
while (K<0) {
if (!sz(rpq)) {
temp = true;
break;
}
auto cn = rpq.top();
rpq.pop();
if (cn.se <= i) continue;
tot--;
K += cn.fi;
}
if (temp) break;
ans = max(ans, tot);
}
return tot;
}
Details
Tip: Click on the bar to expand more detailed information
Subtask #1:
score: 0
Wrong Answer
Test #1:
score: 0
Wrong Answer
time: 120ms
memory: 31284kb
input:
cc61ad56a4797fb3f5c9529f73ce6fcedd85669b 1 200000 31011 61157 8517583098 31011 129396 964383 1655 129396 331139 1655 191487 566483 110385 191487 865248 43212 110385 542661 43212 81682 13766 81682 91774 546589 91774 124706 780638 124706 175650 118706 10421 175650 615314 10421 151953 436270 140430 151...
output:
081ce3c351cbf526b37954b9ad30f2b531a7585c OK 2
result:
wrong answer 1st lines differ - on the 1st token, expected: '451', found: '2'
Subtask #2:
score: 0
Wrong Answer
Test #4:
score: 0
Wrong Answer
time: 0ms
memory: 4108kb
input:
cc61ad56a4797fb3f5c9529f73ce6fcedd85669b 1 50 23 25 382806473 0 1 375710 1 2 898637 2 3 10402 3 4 536577 4 5 385023 5 6 71075 6 7 543368 7 8 301497 8 9 174394 9 10 711312 10 11 923006 11 12 675532 12 13 838667 13 14 565729 14 15 979816 15 16 862618 16 17 576015 17 18 177751 18 19 306989 19 20 881492...
output:
081ce3c351cbf526b37954b9ad30f2b531a7585c OK 98
result:
wrong answer 1st lines differ - on the 1st token, expected: '96', found: '98'
Subtask #3:
score: 0
Skipped
Dependency #2:
0%
Subtask #4:
score: 0
Skipped
Dependency #3:
0%
Subtask #5:
score: 0
Wrong Answer
Test #36:
score: 9
Accepted
time: 0ms
memory: 3880kb
input:
cc61ad56a4797fb3f5c9529f73ce6fcedd85669b 1 4 0 1 9 0 2 2 1 2 3 2 3 3
output:
081ce3c351cbf526b37954b9ad30f2b531a7585c OK 6
result:
ok
Test #37:
score: -9
Wrong Answer
time: 0ms
memory: 3816kb
input:
cc61ad56a4797fb3f5c9529f73ce6fcedd85669b 1 4 0 1 8 0 2 2 1 2 3 2 3 100
output:
081ce3c351cbf526b37954b9ad30f2b531a7585c OK 6
result:
wrong answer 1st lines differ - on the 1st token, expected: '5', found: '6'
Subtask #6:
score: 0
Skipped
Dependency #2:
0%
Subtask #7:
score: 0
Skipped
Dependency #3:
0%
Subtask #8:
score: 0
Skipped
Dependency #4:
0%
Subtask #9:
score: 0
Skipped
Dependency #1:
0%