Online JudgeProblem SetAuthorsOnline ContestsUser
Web Board
Home Page
F.A.Qs
Statistical Charts
Problems
Submit Problem
Online Status
Prob.ID:
Register
Update your info
Authors ranklist
Current Contest
Past Contests
Scheduled Contests
Award Contest
User ID:
Password:
  Register

floyd秒过,输入要处理一下。附代码。

Posted by 17310320725 at 2018-09-06 11:00:24 on Problem 1502
#include <cstdio>
#include <cstring>
#include <iostream>
#include <algorithm>
#include <cmath>
#include <map>
#include <queue>

using namespace std;
const int INF = 0x3f3f3f3f;
const int maxx = 1e3 + 10;

int mp[maxx][maxx];

int main()
{
    int n;
    char ss[15];
    while(cin>>n)
    {
        for(int i=1; i<=n; i++)
        {
            for(int j=1; j<=i; j++)
            {
                if (i == j)
                {
                    mp[i][j] = 0;
                    continue;
                }
                scanf("%s",ss);
                if (ss[0] == 'x')
                    mp[i][j] = mp[j][i] = INF;
                else
                {
                    int l = strlen(ss);
                    int sum = 0;
                    for(int i=0; i<l; i++)
                    {
                        int c = ss[i] - '0';
                        sum =sum * 10 + c;
                    }
                    mp[i][j] = mp[j][i] = sum;
                }
            }
        }
        for(int k=1; k<=n; k++)
            for(int i=1; i<=n; i++)
                for(int j=1; j<=n; j++)
                {
                    if (mp[i][j] > mp[i][k]+mp[k][j])
                        mp[i][j] = mp[i][k]+mp[k][j];
                }
//        for(int i=1; i<=n; i++)
//        {
//            puts("");
//            for(int j=1; j<=n; j++)
//            {
//                printf("%d\t",mp[i][j]);
//            }
//        }
        int ans = 0;
        for(int i=1; i<=n; i++)
        {
            ans =max(ans,mp[1][i]);
        }
        cout<<ans<<endl;




    }

    return 0;
}

Followed by:

Post your reply here:
User ID:
Password:
Title:

Content:

Home Page   Go Back  To top


All Rights Reserved 2003-2013 Ying Fuchen,Xu Pengcheng,Xie Di
Any problem, Please Contact Administrator