답안 #409506

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
409506 2021-05-21T01:49:19 Z rrrr10000 Chase (CEOI17_chase) C++14
30 / 100
247 ms 97692 KB
#include <bits/stdc++.h>
using namespace std;
#define rep(i, n)  for(long long i=0;i<(long long)(n);i++)
#define REP(i,k,n) for(long long i=k;i<(long long)(n);i++)
#define pb emplace_back
#define lb(v,k) (lower_bound(all(v),(k))-v.begin())
#define ub(v,k) (upper_bound(all(v),(k))-v.begin())
#define fi first
#define se second
#define pi M_PI
#define PQ(T) priority_queue<T>
#define SPQ(T) priority_queue<T,vector<T>,greater<T>>
#define dame(a) {out(a);return 0;}
#define decimal cout<<fixed<<setprecision(15);
#define all(a) a.begin(),a.end()
#define rsort(a) {sort(all(a));reverse(all(a));}
#define dupli(a) {sort(all(a));a.erase(unique(all(a)),a.end());}
typedef long long ll;
typedef pair<ll,ll> P;
typedef tuple<ll,ll,ll> PP;
typedef tuple<ll,ll,ll,ll> PPP;
using vi=vector<ll>;
using vvi=vector<vi>;
using vvvi=vector<vvi>;
using vvvvi=vector<vvvi>;
using vp=vector<P>;
using vvp=vector<vp>;
using vb=vector<bool>;
using vvb=vector<vb>;
const ll inf=1001001001001001001;
const ll INF=1001001001;
const ll mod=1000000007;
const double eps=1e-10;
template<class T> bool chmin(T&a,T b){if(a>b){a=b;return true;}return false;}
template<class T> bool chmax(T&a,T b){if(a<b){a=b;return true;}return false;}
template<class T> void out(T a){cout<<a<<'\n';}
template<class T> void outp(T a){cout<<'('<<a.fi<<','<<a.se<<')'<<'\n';}
template<class T> void outvp(T v){rep(i,v.size())cout<<'('<<v[i].fi<<','<<v[i].se<<')';cout<<'\n';}
template<class T> void outvvp(T v){rep(i,v.size())outvp(v[i]);}
template<class T> void outv(T v){rep(i,v.size()){if(i)cout<<' ';cout<<v[i];}cout<<'\n';}
template<class T> void outvv(T v){rep(i,v.size())outv(v[i]);}
template<class T> bool isin(T x,T l,T r){return (l)<=(x)&&(x)<=(r);}
template<class T> void yesno(T b){if(b)out("yes");else out("no");}
template<class T> void YesNo(T b){if(b)out("Yes");else out("No");}
template<class T> void YESNO(T b){if(b)out("YES");else out("NO");}
template<class T> void outset(T s){auto itr=s.begin();while(itr!=s.end()){if(itr!=s.begin())cout<<' ';cout<<*itr;itr++;}cout<<'\n';}
void outs(ll a,ll b){if(a>=inf-100)out(b);else out(a);}
ll gcd(ll a,ll b){if(b==0)return a;return gcd(b,a%b);}
ll modpow(ll a,ll b){ll res=1;a%=mod;while(b){if(b&1)res=res*a%mod;a=a*a%mod;b>>=1;}return res;}
struct Line{
    ll a,b;
    Line(ll A,ll B):a(A),b(B){}
    ll get(ll x){return a*x+b;}
};
class LiChaoTree{
    bool comp(ll a,ll b){
        return a<b;
    }
    ll g=inf;
public:
    vi srtx;
    vector<Line> seg;
    ll N;
    LiChaoTree(vi alx){
        srtx=alx;
        dupli(srtx);
        N=1;
        while(N<srtx.size())N*=2;
        while(srtx.size()<N)srtx.pb(srtx.back());
        seg=vector<Line>(N*2-1,Line(0,g));
    }
    void addline(Line t,ll k=0,ll l=0,ll r=-1){
        if(r==-1)r=N;
        ll L=srtx[l],R=srtx[r-1],MD=srtx[(l+r)/2];
        if(comp(t.get(MD),seg[k].get(MD)))swap(t,seg[k]);
        if(comp(t.get(L),seg[k].get(L)))addline(t,k*2+1,l,(l+r)/2);
        else if(comp(t.get(R),seg[k].get(R)))addline(t,k*2+2,(l+r)/2,r);
    }
    ll solve(ll x){
        ll k=lb(srtx,x)+N-1,res=seg[k].get(x);
        while(k){
            k=(k-1)/2;
            if(comp(seg[k].get(x),res))res=seg[k].get(x);
        }
        return res;
    }
};
int main(){
    ll n,k;cin>>n>>k;
    vvi dp(n,vi(k+1));
    vi v(n);rep(i,n)cin>>v[i];
    vvi g(n);rep(i,n-1){ll a,b;cin>>a>>b;a--;b--;g[a].pb(b);g[b].pb(a);}
    function<void(ll,ll)> dfs=[&](ll i,ll p){
        ll ch=0;
        for(ll x:g[i])if(x!=p){
            dfs(x,i);
            rep(j,k+1)chmax(dp[i][j],dp[x][j]);
            ch+=v[x];
        }
        for(int j=k;j>0;j--)chmax(dp[i][j],dp[i][j-1]+ch);
    };dfs(0,-1);
    ll ans=0;rep(i,k+1)chmax(ans,dp[0][i]);out(ans);
}

Compilation message

chase.cpp: In constructor 'LiChaoTree::LiChaoTree(vi)':
chase.cpp:68:16: warning: comparison of integer expressions of different signedness: 'll' {aka 'long long int'} and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   68 |         while(N<srtx.size())N*=2;
      |               ~^~~~~~~~~~~~
chase.cpp:69:26: warning: comparison of integer expressions of different signedness: 'std::vector<long long int>::size_type' {aka 'long unsigned int'} and 'll' {aka 'long long int'} [-Wsign-compare]
   69 |         while(srtx.size()<N)srtx.pb(srtx.back());
      |               ~~~~~~~~~~~^~
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 204 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 204 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 212 ms 97604 KB Output is correct
2 Correct 215 ms 97692 KB Output is correct
3 Correct 187 ms 91576 KB Output is correct
4 Correct 151 ms 14728 KB Output is correct
5 Correct 247 ms 91456 KB Output is correct
6 Correct 232 ms 91348 KB Output is correct
7 Correct 234 ms 91436 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 204 KB Output isn't correct
2 Halted 0 ms 0 KB -