XwwwwL
XwwwwL
全部文章
分类
归档
标签
去牛客网
登录
/
注册
XwwwwL的博客
全部文章
(共23篇)
题解 | #最长公共子序列(一)#
#include <iostream> #define N 1010 using namespace std; int dp[N][N]; int main() { int m, n; char s1[N], s2[N]; scanf("%d%d", &n,...
2023-03-09
0
242
题解 | #最大连续子序列#
#include <iostream> using namespace std; long long a[10001]; long long dp[10001]; long long maxinum = -INT32_MAX; int count = 0; void maxseq...
2023-03-08
0
311
题解 | #最大序列和#
#include <iostream> using namespace std; long long a[1000001]; long long dp[1000001]; long long maxsubsequence(int n) { long long maxinum...
2023-03-08
0
257
题解 | #N阶楼梯上楼问题#
#include <iostream> using namespace std; int Fibonacci(int n) { if (n == 1 || n == 2) { return n; } else { return Fibo...
2023-03-08
0
280
题解 | #A+B for Matrices#
#include <iostream> using namespace std; struct Matrix { int matrix[10][10]; int row, col;//行列 Matrix(int r, int c) { row...
2023-03-07
0
354
题解 | #计算两个矩阵的乘积#
#include <iostream> using namespace std; struct Matrix { int matrix[3][3]; int row, col;//行列 Matrix(int r, int c) { row = ...
2023-03-07
0
307
题解 | #素数#
#include <iostream> #include <math.h> using namespace std; int prime[10000]; int count = 0; int ans[10000] = {2, 3, ...
2023-03-07
1
293
题解 | #最大公约数#
#include <iostream> using namespace std; int GCD(int a, int b) { //由公式可以得出,(a,b)的最大公约数等于(b,a%b)的最大公约数 if (b == 0) { return a; ...
2023-03-07
0
310
题解 | #N的阶乘#
#include <iostream> #include <cstring> using namespace std; struct bign { int d[100000]; int len; bign() { len = 0;...
2023-03-07
0
268
题解 | #a+b#
#include <iostream> #include <cstring> using namespace std; struct bign { int d[1000]; int len; bign() { len = 0; ...
2023-03-07
0
304
首页
上一页
1
2
3
下一页
末页