本文主要是介绍1062: 有向图的边存在判断,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
解法:
#include<iostream>
#include<vector>
using namespace std;
int arr[100][100];
int main() {int n;int x, y;cin >> n >> x >> y;for (int i = 0; i < n; i++) {for (int j = 0; j < n; j++) {cin >> arr[i][j];}}if (arr[x][y] || arr[y][x])cout << "yes";else cout << "no";return 0;
}
这篇关于1062: 有向图的边存在判断的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!