提交记录 9545


用户 题目 状态 得分 用时 内存 语言 代码长度
zrz0520 noip18f. 【NOIP2018】保卫王国 Accepted 100 139.275 ms 34288 KB C++ 3.62 KB
提交时间 评测时间
2019-06-06 17:09:15 2020-08-01 01:39:31
#pragma GCC optimize(3)
#include<cstdio>
#include<algorithm>
using namespace std;
typedef long long ll;
const int N=1e5+5;
const ll INF=1e11;
int Head[N],Next[N<<1],vet[N<<1];
int top[N],fa[N],ch[N][2],son[N],sz[N],lsz[N],stk[N],Fa[N],pre[N];
ll dp[N][2],g[N][2],p[N];
int n,m,u,v,edgenum,a,x,b,y,root,cnt;
char s[10];
inline ll Min(const ll& a, const ll& b){ return a<b?a:b; }
struct Matrix{ ll a[2][2]; };
inline Matrix Get(const ll& x, const ll& y){
    Matrix c;
    c.a[0][0]=INF; c.a[0][1]=x;
    c.a[1][0]=c.a[1][1]=y;
    return c;
}
Matrix tree[N],Node[N];
Matrix operator * (const Matrix& a, const Matrix& b){
    Matrix c;
    c.a[0][0]=Min(a.a[0][0]+b.a[0][0],a.a[0][1]+b.a[1][0]);
    c.a[0][1]=Min(a.a[0][0]+b.a[0][1],a.a[0][1]+b.a[1][1]);
    c.a[1][0]=Min(a.a[1][0]+b.a[0][0],a.a[1][1]+b.a[1][0]);
    c.a[1][1]=Min(a.a[1][0]+b.a[0][1],a.a[1][1]+b.a[1][1]);
    return c;
}
inline void addedge(const int& u, const int& v){
    vet[++edgenum]=v;
    Next[edgenum]=Head[u];
    Head[u]=edgenum;
}
inline void pushup(const int& u){ tree[u]=tree[ch[u][0]]*Node[u]*tree[ch[u][1]]; }
inline void update(int u){
    Node[u]=Get(g[u][0],g[u][1]);
    for (; u; u=fa[u]){
        int f=fa[u];
        if (f && ch[f][0]!=u && ch[f][1]!=u){
            g[f][0]-=tree[u].a[1][1]; g[f][1]-=Min(tree[u].a[0][1],tree[u].a[1][1]);
            pushup(u);
            g[f][0]+=tree[u].a[1][1]; g[f][1]+=Min(tree[u].a[0][1],tree[u].a[1][1]);
            Node[f]=Get(g[f][0],g[f][1]);
        } else pushup(u);
    }
}
int build(int l, int r){
    if (l>r) return 0;
    int hav=(pre[r]+pre[l-1]+1)/2;
    int k=lower_bound(pre+l,pre+r+1,hav)-pre,u=stk[k];
    fa[ch[u][0]=build(l,k-1)]=u;
    fa[ch[u][1]=build(k+1,r)]=u;
    pushup(u); return u;
}
void dfs1(int u, int f){
    sz[u]=1; dp[u][1]=p[u]; fa[u]=Fa[u]=f;
    for (int e=Head[u]; e; e=Next[e]){
        int v=vet[e];
        if (v==f) continue;
        dfs1(v,u); sz[u]+=sz[v];
        dp[u][0]+=dp[v][1];
        dp[u][1]+=Min(dp[v][0],dp[v][1]);
        if (sz[v]>sz[son[u]]) son[u]=v;
    }
    lsz[u]=sz[u]-sz[son[u]];
}
void dfs2(int u, int f, int st){
    top[u]=st; g[u][1]=p[u];
    if (son[u]) dfs2(son[u],u,st);
    for (int e=Head[u]; e; e=Next[e]){
        int v=vet[e];
        if (v==son[u] || v==f) continue;
        dfs2(v,u,v);
        g[u][0]+=dp[v][1];
        g[u][1]+=Min(dp[v][0],dp[v][1]);
    }
    Node[u]=Get(g[u][0],g[u][1]);
    if (top[u]==u){
        cnt=0;
        for (int i=u; i; i=son[i]) stk[++cnt]=i,pre[cnt]=pre[cnt-1]+lsz[i];
        int las=fa[u];
        fa[root=build(1,cnt)]=las;
    }
}
inline int read(){
    int num=0,fu=1; char ch=getchar();
    while (ch<'0' || ch>'9'){ if (ch=='-') fu=0; ch=getchar(); }
    while (ch>='0' && ch<='9'){ num=(num<<3)+(num<<1)+ch-'0'; ch=getchar(); }
    return fu?num:-num;
}
int main(){
    freopen("defense.in","r",stdin);
    freopen("defense.out","w",stdout);
    n=read(); m=read(); scanf("%s",s);
    ll *P=p;
    for (register int i=1; i<=n; i++) *(P+i)=read();
    for (register int i=1; i<n; i++){
        u=read(); v=read();
        addedge(u,v); addedge(v,u);
    }
    tree[0].a[0][0]=tree[0].a[1][1]=0;
    tree[0].a[0][1]=tree[0].a[1][0]=INF;
    dfs1(1,0); dfs2(1,0,1);
    for (; m; m--){
        a=read(); x=read(); b=read(); y=read();
        if (!x && !y && (Fa[a]==b || Fa[b]==a)){ puts("-1"); continue; }
        x^=1; y^=1;
        ll last1=g[a][x],last2=g[b][y];
        g[a][x]=INF; update(a);
        g[b][y]=INF; update(b);
        printf("%lld\n",Min(tree[root].a[0][1],tree[root].a[1][1]));
        g[a][x]=last1; update(a);
        g[b][y]=last2; update(b);
    }
    return 0;
}
/*
5 3 C3
2 4 1 3 9
1 5
5 2
5 3
3 4
1 0 3 0
2 1 3 1
1 0 5 0
*/

CompilationN/AN/ACompile OKScore: N/A

Testcase #123.8 us84 KBAcceptedScore: 4

Testcase #227.16 us84 KBAcceptedScore: 4

Testcase #323.87 us84 KBAcceptedScore: 4

Testcase #422.07 us84 KBAcceptedScore: 4

Testcase #573.14 us116 KBAcceptedScore: 4

Testcase #6121.09 us116 KBAcceptedScore: 4

Testcase #7119.05 us104 KBAcceptedScore: 4

Testcase #81.585 ms760 KBAcceptedScore: 4

Testcase #91.668 ms760 KBAcceptedScore: 4

Testcase #101.519 ms564 KBAcceptedScore: 4

Testcase #111.487 ms564 KBAcceptedScore: 4

Testcase #12113.677 ms33 MB + 496 KBAcceptedScore: 4

Testcase #13113.03 ms33 MB + 496 KBAcceptedScore: 4

Testcase #1498.148 ms33 MB + 300 KBAcceptedScore: 4

Testcase #1599.134 ms33 MB + 304 KBAcceptedScore: 4

Testcase #1699.114 ms33 MB + 304 KBAcceptedScore: 4

Testcase #17139.275 ms33 MB + 496 KBAcceptedScore: 4

Testcase #1865.824 ms15 MB + 968 KBAcceptedScore: 4

Testcase #1965.792 ms15 MB + 968 KBAcceptedScore: 4

Testcase #2089.737 ms23 MB + 832 KBAcceptedScore: 4

Testcase #2189.819 ms23 MB + 828 KBAcceptedScore: 4

Testcase #2289.817 ms23 MB + 636 KBAcceptedScore: 4

Testcase #23126.859 ms23 MB + 820 KBAcceptedScore: 4

Testcase #24126.871 ms23 MB + 832 KBAcceptedScore: 4

Testcase #25126.711 ms23 MB + 856 KBAcceptedScore: 4


Judge Duck Online | 评测鸭在线
Server Time: 2026-04-04 02:17:54 | Loaded in 1 ms | Server Status
个人娱乐项目,仅供学习交流使用 | 捐赠