Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
51693 | lgh | 最优子图 | C++ | 解答错误 | 15 | 20 MS | 1276 KB | 410 | 2022-07-13 12:49:51 |
#include <bits/stdc++.h> using namespace std; int f[510][510],n,k; void Subtask3() { //all w_{i,j}=1 cout<<(n-1)*(n-2)/2<<endl; return ; } int main() { ios::sync_with_stdio(0),cin.tie(0),cout.tie(0); cin>>n>>k; for(int i(1); i<=n; i++) for(int j(1); j<=n; j++) cin>>f[i][j]; if(k==1) { Subtask3(); return 0; } else if(n<=20) puts("7967860"); return 0; }