QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#407146 | #7103. Red Black Tree | Sorting | AC ✓ | 921ms | 26316kb | C++20 | 3.0kb | 2024-05-08 02:09:00 | 2024-05-08 02:09:00 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std ;
typedef long long ll ;
typedef unsigned long long ull ;
typedef pair < int , int > pii ;
typedef vector < int > vi ;
#define fi first
#define se second
mt19937 rng(chrono::high_resolution_clock::now().time_since_epoch().count());
#define rep(i, a, b) for(int i = a; i < (b); ++i)
#define all(x) begin(x), end(x)
#define sz(x) (int)(x).size()
const int MAXN = 1e5 + 7 ;
const int LOG = 18 ;
const ll inf = 1e18 ;
int n , m , q ;
vector < pii > v[ MAXN ] ;
bool spec[ MAXN ] ;
int st[ MAXN ] , en[ MAXN ] , tp ;
ll pref[ MAXN ] ;
int lvl[ MAXN ] , LCA[ MAXN ][ LOG ] ;
int anc[ MAXN ] ;
void dfs ( int x , int prv , int lst ) {
st[ x ] = ++ tp ;
anc[ x ] = lst ;
for ( int i = 1 ; i < LOG ; ++ i ) {
LCA[ x ][ i ] = LCA[ LCA[ x ][ i - 1 ] ][ i - 1 ] ;
}
for ( auto [ y , len ] : v[ x ] ) {
if ( y == prv ) { continue ; }
pref[ y ] = pref[ x ] + len ;
lvl[ y ] = lvl[ x ] + 1 ;
LCA[ y ][ 0 ] = x ;
if ( spec[ y ] == true ) { dfs ( y , x , y ) ; }
else { dfs ( y , x , lst ) ; }
}
en[ x ] = tp ;
}
int get_lca ( int x , int y ) {
for ( int i = LOG - 1 ; i >= 0 ; -- i ) {
if ( lvl[ x ] - ( 1 << i ) >= lvl[ y ] ) {
x = LCA[ x ][ i ] ;
}
if ( lvl[ y ] - ( 1 << i ) >= lvl[ x ] ) {
y = LCA[ y ][ i ] ;
}
}
for ( int i = LOG - 1 ; i >= 0 ; -- i ) {
if ( LCA[ x ][ i ] != LCA[ y ][ i ] ) {
x = LCA[ x ][ i ] , y = LCA[ y ][ i ] ;
}
}
if ( x != y ) { x = LCA[ x ][ 0 ] ; }
return x ;
}
int k ;
int vals[ MAXN ] ;
pair < ll , int > srt[ MAXN ] ;
void solve ( ) {
cin >> n >> m >> q ;
for ( int i = 1 ; i <= n ; ++ i ) {
v[ i ].clear ( ) ;
spec[ i ] = false ;
}
for ( int i = 1 , x ; i <= m ; ++ i ) {
cin >> x ;
spec[ x ] = true ;
}
for ( int i = 1 , x , y , z ; i < n ; ++ i ) {
cin >> x >> y >> z ;
v[ x ].push_back ( { y , z } ) ;
v[ y ].push_back ( { x , z } ) ;
}
tp = 0 ;
dfs ( 1 , -1 , 1 ) ;
while ( q -- ) {
cin >> k ;
map < ll , int > aux ;
for ( int i = 1 ; i <= k ; ++ i ) {
cin >> vals[ i ] ;
srt[ i ] = { pref[ vals[ i ] ] - pref[ anc[ vals[ i ] ] ] , vals[ i ] } ;
}
sort ( srt + 1 , srt + k + 1 , greater < pair < ll , int > > ( ) ) ;
int rt = -1 ;
ll mx = -1 ;
ll ans = inf ;
for ( int i = 1 ; i <= k ; ++ i ) {
if ( rt == -1 ) { rt = srt[ i ].se ; }
else { rt = get_lca ( rt , srt[ i ].se ) ; }
mx = max ( mx , pref[ srt[ i ].se ] ) ;
ll cand = mx - pref[ rt ] ;
if ( i < k ) { cand = max ( cand , srt[ i + 1 ].fi ) ; }
ans = min ( ans , cand ) ;
}
cout << ans << "\n" ;
}
}
int main ( ) {
ios_base :: sync_with_stdio ( false ) ;
cin.tie ( NULL ) ;
int t = 1 ; cin >> t ;
while ( t -- ) { solve ( ) ; }
return 0 ;
}
这程序好像有点Bug,我给组数据试试?
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 1ms
memory: 7712kb
input:
2 12 2 4 1 9 1 2 1 2 3 4 3 4 3 3 5 2 2 6 2 6 7 1 6 8 2 2 9 5 9 10 2 9 11 3 1 12 10 3 3 7 8 4 4 5 7 8 4 7 8 10 11 3 4 5 12 3 2 3 1 2 1 2 1 1 3 1 1 1 2 1 2 3 1 2 3
output:
4 5 3 8 0 0 0
result:
ok 7 lines
Test #2:
score: 0
Accepted
time: 921ms
memory: 26316kb
input:
522 26 1 3 1 1 4 276455 18 6 49344056 18 25 58172365 19 9 12014251 2 1 15079181 17 1 50011746 8 9 2413085 23 24 23767115 22 2 26151339 26 21 50183935 17 14 16892041 9 26 53389093 1 20 62299200 24 18 56114328 11 2 50160143 6 26 14430542 16 7 32574577 3 16 59227555 3 15 8795685 4 12 5801074 5 20 57457...
output:
148616264 148616264 0 319801028 319801028 255904892 317070839 1265145897 1265145897 1072765445 667742619 455103436 285643094 285643094 285643094 317919339 0 785245841 691421476 605409472 479058444 371688030 303203698 493383271 919185207 910180170 919185207 121535083 181713164 181713164 181713164 181...
result:
ok 577632 lines
Extra Test:
score: 0
Extra Test Passed