F.A.Q
Hand In Hand
Online Acmers
Problem Archive
Realtime Judge Status
Authors Ranklist
 
     C/C++/Java Exams     
ACM Steps
Go to Job
Contest LiveCast
ICPC@China
Best Coder beta
VIP | STD Contests
    DIY | Web-DIY beta
Author ID 
Password 
 Register new ID

View Compilation Error

0_0_20613805_5405.cpp:7:6: error: expected unqualified-id before numeric constant
      0 && dis[now] + edge[i].cost < dis[adj])            {                dis[adj] = dis[now] + edge[i].cost;                pre[adj] = now;                pos[adj] = i;                if(!vis[adj])                {                    vis[adj] = 1;                    que[tail++] = adj;                }            }        }    }    return pre[t] != -1;}int MinCostFlow(int s, int t){    int i;    int cost = 0;    flow = 0;    while(spfa(s, t))    {        int f = 100000000;        for(i = t; i != s; i = pre[i])        if (edge[pos[i]].val < f)            f = edge[pos[i]].val;            flow += f;            cost += dis[t] * f;            for(i = t; i != s; i = pre[i])            {                edge[pos[i]].val -= f;                edge[pos[i] ^ 1].val += f;            }    }    return cost;}void build(int type){    int i,j;    init();    for(i=2;i<=n;i++){        add(1,i,ty[i][type],1);        add(i,i+2*n,ty[i][type],0);        add(1,i+n,ty[i][type],0);        add(i+2*n,3*n+1,ty[i][type],0);        for(j=2;j<=n;j++){            if(sta[i]+en[i]+d[i][j]<=sta[j]){                add(i+n,j+2*n,ty[i][type],0);            }        }    }}int solve(){    int i,j,u,v;    int ans=0;    for(i=1;i<=m;i++){        build(i);        ans+=MinCostFlow(1,3*n+1);    }    return ans;}int main(){    int i,j,u,v,c,t;    scanf("%d",&t);    while(t--)    {        init();        scanf("%d%d",&n,&m);        scanf("%lf%lf",&p[1].x,&p[1].y);        for(i=2;i<=n;i++){            scanf("%lf%lf%d%d",&p[i].x,&p[i].y,&sta[i],&en[i]);            for(j=1;j<=m;j++){                scanf("%d",&ty[i][j]);            }        }        for(i=1;i<=n;i++){            for(j=i+1;j<=n;j++){                d[i][j]=d[j][i]=DIS(p[i],p[j]);            }        }        printf("%d\n",solve());    }    return 0;}
      ^


Hangzhou Dianzi University Online Judge 3.0
Copyright © 2005-2024 HDU ACM Team. All Rights Reserved.
Designer & Developer : Wang Rongtao LinLe GaoJie GanLu
Total 0.000000(s) query 1, Server time : 2024-10-01 09:45:42, Gzip enabled