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_20613085_11077.cpp:6:5: error: expected unqualified-id before '=' token
     = 1 && x <= N && y >= 1 && y <= M;}void moveall(){    int i, x, y;    for(i = 0; i < K; i ++)    {        x = mon[i].x + dx[mon[i].d], y = mon[i].y + dy[mon[i].d];        if(inside(x, y) && g[x][y]) mon[i].x = x, mon[i].y = y;        else mon[i].d = trans[mon[i].d];    }}void delblock(){    int i, j, x, y;    for(i = 1; i <= N; i ++)        for(j = 1; j <= M; j ++) del[i][j] = 1 - g[i][j];    for(i = 0; i < K; i ++)        for(j = 0; j < 9; j ++)        {            x = mon[i].x + ex[mon[i].d][j], y = mon[i].y + ey[mon[i].d][j];            if(inside(x, y)) del[x][y] = 1;        }}void init(){    int i, j;    scanf("%d%d", &N, &M);    for(i = 1; i <= N; i ++)    {        scanf("%s", b + 1);        for(j = 1; j <= M; j ++)        {            g[i][j] = b[j] != '*';            if(b[j]== 'A') sx = i, sy = j;            else if(b[j] == 'B') tx = i, ty = j;        }    }    scanf("%d", &K);    for(i = 0; i < K; i ++) scanf("%d%d%d", &mon[i].x, &mon[i].y, &mon[i].d);}void solve(){    int i, j, x, y, cur, ans = -1;    cur = -1;    delblock();    if(del[sx][sy])    {        printf("璐ュ靛朵涓 峰ユ澶т\n");        return ;    }    std::queue <Point> q;    q.push(Point(sx, sy, 0));    while(!q.empty())    {        Point p = q.front();        q.pop();        if(p.t > 1000) break;        if(p.x == tx && p.y == ty)        {            ans = p.t;            break;        }        if(p.t > cur)        {            cur = p.t;            for(i = 1; i <= N; i ++)                for(j = 1; j <= M; j ++) vis[i][j] = 0;            moveall(), delblock();        }        for(i = 0; i < 5; i ++)        {            x = p.x + dx[i], y = p.y + dy[i];            if(inside(x, y) && !del[x][y] && !vis[x][y])                vis[x][y] = 1, q.push(Point(x, y, p.t + 1));        }    }    if(ans == -1) printf("璐ュ靛朵涓 峰ユ澶т\n");    else printf("%d\n", ans);}int main(){    int t, tt;    scanf("%d", &t);    for(tt = 1; tt <= t; tt ++)    {        init();        printf("Case %d: ", tt);        solve();    }    return 0;}
     ^
0_0_20613085_11077.cpp:6:39: error: expected declaration before '}' token
     = 1 && x <= N && y >= 1 && y <= M;}void moveall(){    int i, x, y;    for(i = 0; i < K; i ++)    {        x = mon[i].x + dx[mon[i].d], y = mon[i].y + dy[mon[i].d];        if(inside(x, y) && g[x][y]) mon[i].x = x, mon[i].y = y;        else mon[i].d = trans[mon[i].d];    }}void delblock(){    int i, j, x, y;    for(i = 1; i <= N; i ++)        for(j = 1; j <= M; j ++) del[i][j] = 1 - g[i][j];    for(i = 0; i < K; i ++)        for(j = 0; j < 9; j ++)        {            x = mon[i].x + ex[mon[i].d][j], y = mon[i].y + ey[mon[i].d][j];            if(inside(x, y)) del[x][y] = 1;        }}void init(){    int i, j;    scanf("%d%d", &N, &M);    for(i = 1; i <= N; i ++)    {        scanf("%s", b + 1);        for(j = 1; j <= M; j ++)        {            g[i][j] = b[j] != '*';            if(b[j]== 'A') sx = i, sy = j;            else if(b[j] == 'B') tx = i, ty = j;        }    }    scanf("%d", &K);    for(i = 0; i < K; i ++) scanf("%d%d%d", &mon[i].x, &mon[i].y, &mon[i].d);}void solve(){    int i, j, x, y, cur, ans = -1;    cur = -1;    delblock();    if(del[sx][sy])    {        printf("璐ュ靛朵涓 峰ユ澶т\n");        return ;    }    std::queue <Point> q;    q.push(Point(sx, sy, 0));    while(!q.empty())    {        Point p = q.front();        q.pop();        if(p.t > 1000) break;        if(p.x == tx && p.y == ty)        {            ans = p.t;            break;        }        if(p.t > cur)        {            cur = p.t;            for(i = 1; i <= N; i ++)                for(j = 1; j <= M; j ++) vis[i][j] = 0;            moveall(), delblock();        }        for(i = 0; i < 5; i ++)        {            x = p.x + dx[i], y = p.y + dy[i];            if(inside(x, y) && !del[x][y] && !vis[x][y])                vis[x][y] = 1, q.push(Point(x, y, p.t + 1));        }    }    if(ans == -1) printf("璐ュ靛朵涓 峰ユ澶т\n");    else printf("%d\n", ans);}int main(){    int t, tt;    scanf("%d", &t);    for(tt = 1; tt <= t; tt ++)    {        init();        printf("Case %d: ", tt);        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-11-30 01:35:01, Gzip enabled