题解列表

筛选

2880: 计算鞍点

摘要:解题思路:int main() {     for(int i=1;i<=5;i++)//双重循环1     {         for(int j=1;j<=5;j++)//双重循环2  ……

2880: 计算鞍点

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;long long a[100][100],n,sum=0;int main(){……

2880: 计算鞍点

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;long long a[1005][1005];int main(){    fo……

光头强购买新家具

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;typedef long long ll;int n,m;int a[10005];……

第几项33333333

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){    int a,b,s = 0;    cin>>a; ……

数组模拟队列

摘要:解题思路:使用数组模拟队列注意事项:没有使用STL,避免超时参考代码:#include<iostream>#include<algorithm>using namespace std;const in……

1672: 迷宫问题(bfs)

摘要:解题思路:注意事项:参考代码:#include <iostream> #include <queue> using namespace std; struct node{ int x; ……

闲来无事的题解1111111

摘要:解题思路:注意事项:参考代码:long long a,b;   //长整形(100000000000000000000-(-100000000000000000000))int a,b;  //普通整……