题解列表
2818 while解法
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a; int x,y; scanf("%d",&a); x=a; whil……
快速幂方法(需掌握)
摘要:参考代码:#include<bits/stdc++.h>
using namespace std;
#define int long long
int fastPow(int a,int n,i……
2881: 图像相似度
摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;const int N=2e3;ll a……
2878: 计算矩阵边缘元素之和
摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;const int N=2e3;ll a……