三国游戏题解
2024-10-05 18:41:18
发布于:北京
4阅读
0回复
0点赞
#include <bits/stdc++.h>
using namespace std;
int a[509][509],n,x;
int main(){
cin >> n;
for(int i = 1;i < n;i ++)
for(int j = i + 1;j <= n;j ++){
cin >> a[i][j];
a[j][i] = a[i][j];
}
for(int i = 1;i <= n;i ++){
sort(a[i] + 1,a[i] + 1 + n);
x = x > a[i][n - 1]?x : a[i][n - 1];
}
cout << 1 << endl << x << endl;
return 0;
}
这里空空如也
有帮助,赞一个