HDU 4584 Building bridges

來源:互聯網
上載者:User

標籤:枚舉

枚舉。


又是一期檢測題。又是只能做水題。唉。為毛老是選這種邀請賽的題。

枚舉一下 H 點 和 C 點就行了。


#include<cstdio>#include<cstring>#include<string>#include<queue>#include<algorithm>#include<map>#include<stack>#include<iostream>#include<list>#include<set>#include<cmath>#define INF 0x7fffffff#define eps 1e-6#define LL long longusing namespace std;int n,m;struct lx{    int x,y;};lx C[41*41],H[41*41];int main(){    while(scanf("%d%d",&n,&m),n||m)    {        char str[41];        int ccot=0,hcot=0;        for(int i=0; i<n; i++)        {            scanf("%s",str);            for(int j=0; j<m; j++)            {                if(str[j]=='C')                {                    C[ccot].x=i;                    C[ccot++].y=j;                }                else if(str[j]=='H')                {                    H[hcot].x=i;                    H[hcot++].y=j;                }            }        }        int hx=0,hy=0,cx=0,cy=0;        int len=INF;        for(int i=0;i<hcot;i++)        {            for(int j=0;j<ccot;j++)            {                int tmp=abs(H[i].x-C[j].x)+abs(H[i].y-C[j].y);                if(tmp<len)                {                    len=tmp;                    hx=H[i].x,hy=H[i].y;                    cx=C[j].x,cy=C[j].y;                }            }        }        printf("%d %d %d %d\n",hx,hy,cx,cy);    }}


HDU 4584 Building bridges

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.