题解列表

筛选

1672: 迷宫问题(bfs)

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

闲来无事的题解1111111

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

闲来无事的题解

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

2886: 图像旋转

摘要:参考代码:#include <bits/stdc++.h>using namespace std;long long int a[1300][1300];int main(){    int m,n;……

**图像旋转**

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

2886: 图像旋转

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

2886: 图像旋转

摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int x,y,a[100][100];int main(){   cin>>x>>y;  ……

2886: 图像旋转

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int a[101][101],n,m;//定义一个101*101的二维数组,空间……

1242: 矩阵转置

摘要:参考代码:#include<bits/stdc++.h>using namespace std;long long int a[1300][1300];long long int d[1300][13……

1242: 矩阵转置

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