Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
51600 | AK2022071335 | 最优子图 | C++ | 解答错误 | 0 | 0 MS | 432 KB | 388 | 2022-07-13 11:55:32 |
#include <bits/stdc++.h> using namespace std; string s[3010]; string son[3010]; int main() { int n,k,type,ans=0; cin>>n>>k>>type; for(int i=0; i<n; i++) { cin>>s[i]; } // for(int i=0; i<n; i++) // { // cout<<s[i]; // } for(int i=0;i<n;i++){ if(type==0) { for(int j=k;j>=0;j--) { } } } return 0; }