zoukankan      html  css  js  c++  java
  • E-Dijkstal

    1005 输出用%f,1009别做了

    Problem E

    Time Limit : 2000/1000ms (Java/Other)   Memory Limit : 32768/32768K (Java/Other)
    Total Submission(s) : 96   Accepted Submission(s) : 51
    Problem Description
    XiaoY is living in a big city, there are N towns in it and some towns near the sea. All these towns are numbered from 0 to N-1 and XiaoY lives in the town numbered ’0’. There are some directed roads connecting them. It is guaranteed that you can reach any town from the town numbered ’0’, but not all towns connect to each other by roads directly, and there is no ring in this city. One day, XiaoY want to go to the seaside, he asks you to help him find out the shortest way.
     

    Input
    There are several test cases. In each cases the first line contains an integer N (0<=N<=10), indicating the number of the towns. Then followed N blocks of data, in block-i there are two integers, Mi (0<=Mi<=N-1) and Pi, then Mi lines followed. Mi means there are Mi roads beginning with the i-th town. Pi indicates whether the i-th town is near to the sea, Pi=0 means No, Pi=1 means Yes. In next Mi lines, each line contains two integers S[sub]Mi[/sub] and L[sub]Mi[/sub], which means that the distance between the i-th town and the S[sub]Mi[/sub] town is L[sub]Mi[/sub].
     

    Output
    Each case takes one line, print the shortest length that XiaoY reach seaside.
     

    Sample Input
    5 1 0 1 1 2 0 2 3 3 1 1 1 4 100 0 1 0 1
     

    Sample Output
    2
     
    #include<cstdio>
    #include<cstring>
    #include<cmath>
    #include<algorithm>
    #define INF 0x3f3f3f3f
    using namespace std;
    int map[11][11],dis[11];
    bool used[11];
    int sea[11];
    int n,k,minx;
    void init()
    {
        for(int i=0;i<n;i++)
        {
            for(int j=0;j<n;j++)
                {
                    if(i==j) map[i][j] = 0;
                         map[i][j] = INF;
                }
        } 
    }
    void dijkstral(int s)
    {
        memset(used,false,sizeof(used));
        for(int i=0;i<n;i++)
        {
            dis[i] = map[0][i];
        }
        
        dis[s] = 0;
        while(1)
        {
            int v = -1;
            for(int u=0;u<n;u++)
            {
                if(!used[u]&&(v==-1||dis[u]<dis[v]))    v = u;
            }
            if(v==-1)    break;
            used[v] = true;
            for(int u=0;u<n;u++)
            {
                dis[u] = min(dis[u],dis[v]+map[v][u]);
            }
        }
        int minm = INF;
    
        for (int i=0;i<k;i++)
        {
            minm = min(minm,dis[sea[i]]);
        }
        printf ("%d
    ",minm);
    }
    int main()
    {
        int s,l;
        int M,P; 
        int N;
        while(~scanf("%d",&N))
        {
        int cnt = 0; 
        int y = 0;
        n = N;    
        init();
        while(N--)
        {
    
            scanf("%d%d",&M,&P);
            if(P) 
            {
                sea[y++] = cnt;
            }
            for(int i=0;i<M;i++)
            {
                scanf("%d%d",&s,&l);
                map[cnt][s] = min(l,map[cnt][s]);
                map[s][cnt] = min(l,map[cnt][s]);
            }
            cnt++;
        }
        dijkstral(0);
    }
        return 0;
    }
  • 相关阅读:
    【转】五笔字根图
    数据集ds 转化为json
    js 计算 往前(后)几天(月、年)
    js 每秒刷新系统时间,可停止
    如何获取枚举字符串,值及遍历枚举
    js 正则判断值
    C#将时间格式 yyyymmdd hh:mm:ss转换为yyyyMMddHHmmss
    【转】什么是程序集?
    C# 两个日期相减得到月数和天数和时and计算 日期减去月之后的日期
    js判断一个下拉框的选中值是否改变
  • 原文地址:https://www.cnblogs.com/valar/p/4750065.html
Copyright © 2011-2022 走看看