Submission #282313

#TimeUsernameProblemLanguageResultExecution timeMemory
282313infinite_iqMagic Tree (CEOI19_magictree)C++14
50 / 100
2093 ms793464 KiB
#define fast ios_base::sync_with_stdio(0),cin.tie(0),cout.tie(0) #include <bits/stdc++.h> using namespace std; #define sqr 340 #define mp make_pair #define mid (l+r)/2 #define le node * 2 #define ri node * 2 + 1 #define pb push_back #define ppb pop_back #define fi first #define se second #define lb lower_bound #define ub upper_bound #define ins insert #define era erase #define C continue #define mem(dp,i) memset(dp,i,sizeof(dp)) #define mset multiset #define all(x) x.begin(), x.end() #define gc getchar_unlocked typedef long long ll; typedef short int si; typedef long double ld; typedef pair<int,int> pi; typedef pair<ll,ll> pll; typedef vector<int> vi; typedef vector<ll> vll; typedef vector<pi> vpi; typedef vector<pll> vpll; typedef pair<double,ll>pdi; const ll inf=1e18; const ll mod=998244353; const ld Pi=acos(-1) ; ll n , m , k ; vll v [100009] ; pll fruit [100009] ; ll dp [100009][1001] ; unordered_map < int , int > id ; void dfs ( int node ) { for ( auto u : v [node] ) { dfs ( u ) ; for ( int i = 0 ; i < k ; i ++ ) { dp [node][i] += dp [u][i] ; } } dp [node][fruit[node] .se] += fruit[node] .fi ; for ( int i = 1 ; i < k ; i ++ ) { dp [node][i] = max ( dp [node][i] , dp [node][i-1] ) ; } } int main () { cin >> n >> m >> k ; for ( int i = 2 ; i <= n ; i ++ ) { int a , b = i ; cin >> a ; a -- , b -- ; v [a] .pb ( b ) ; } set < int > s ; ll sum = 0 , z = 1; for ( int i = 0 ; i < m ; i ++ ) { int node , day , w ; cin >> node >> day >> w ; node -- , day -- ; fruit [node] = { w , day } ; s .ins ( day ) ; sum += w ; z &= ( v [node] .size () == 0 ) ; } if (z) { cout << sum << endl ; exit (0) ; } int N = 0 ; for ( auto u : s ) { id [u] = N ++ ; } for ( int i = 0 ; i < n ; i ++ ) { if ( fruit [i] .fi ) { fruit [i] .se = id [fruit[i].se] ; } } k = N ; dfs ( 0 ) ; cout << dp [0][k-1] << endl ; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...