1155. Can I Post the Lette

Source: Internet
Author: User
#include "iostream" #include "memory.h" #include "Cstdio" using namespace Std;int road[201][201];int N, m;/* use Freud algorithm to solve this problem , if two cities can be connected, the distance is 0*/inline void Floyd () {for (int i = 0; i < n; i++) {for (int j = 0; J < N; j + +) {for (int k = 0; K &L T N k++) {if (Road[j][k] > (road[j][i] + road[i][k])) {Road[j][k] = Road[j][i] + road[i][k];}}}} int main () {while (CIN >> n && N) {if (0 = = N) break;for (int i = 0, i < 201; i++) {for (int j = 0; J < 20 1; J + +) {road[i][j] = 100;} Road[i][i] = 0;} CIN >> m;for (int i = 0; i < m; i++) {int A, b;cin >> a >> b;road[a][b] = 0;road[b][a] = 0;} Floyd (); if (road[0][n-1] = = 0) {printf ("I can post the letter\n");} else{printf ("I can ' t post the letter\n");}} return 0;}

1155. Can I Post the Lette

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.