第二次训练--D问题(C++解析) 摘要:# D问题解析 ## 前言 这道题考察了递推和高精度,但是高精度只是点缀。可能很多小伙伴通过java、python语言绕过了高精度。这样做没什么意义。因为java、python组真考高精度,难点永…… 文章列表 2024年01月24日 0 点赞 0 评论 553 浏览 评分:0.0
双指针查找字符串中包含几个单词 摘要:#include<iostream> using namespace std; int main(void) { string s; getline(cin,s); //有空格输入 …… 文章列表 2024年01月24日 0 点赞 0 评论 146 浏览 评分:0.0
双指针 最长连续不重复子序列 摘要:#include<iostream> using namespace std; const int N=10010; int a[N],b[N],n,sum=0; int main(void)…… 文章列表 2024年01月24日 0 点赞 0 评论 211 浏览 评分:0.0
离散化(acwing) 摘要:适用:值域跨度很大,但所用的很稀疏 //一个无限长坐标轴 在某个位置加上一个数(n次) 询问从l到r之间共加了多少(询问m次) #include<iostream> #include<vect…… 文章列表 2024年01月27日 0 点赞 0 评论 105 浏览 评分:0.0
P1548 [NOIP1997 普及组] 棋盘问题 摘要:#include <bits/stdc++.h> using namespace std; int main() { int n, m; cin >> n >> m; int zz=…… 文章列表 2024年01月28日 0 点赞 0 评论 85 浏览 评分:0.0
区间合并(acwing) 摘要://给定多个区间 求有几个区间(将两重合区间合并成一个区间) #include<iostream> #include<algorithm> #include<vector> using na…… 文章列表 2024年01月28日 0 点赞 0 评论 122 浏览 评分:0.0
第一次出现且仅出现一次的字符 摘要:#include <stdio.h>#include <string.h>int judge(char arr[1000],int sz){ for (int i = 0; i < sz; i++) …… 文章列表 2024年02月13日 0 点赞 0 评论 178 浏览 评分:0.0
蓝桥杯2022年第十三届省赛真题-统计子矩阵 摘要:不知道为什么指针越界? def Pre_sum(sum,z): for g in range(1, m + 1): for h in range(1, n + 1):…… 文章列表 2024年02月22日 0 点赞 0 评论 178 浏览 评分:0.0
最大公约数 摘要:欧几里得算法-最大公约数 #include<iostream> using namespace std; int gcd(int a,int b) { return b?gcd(b…… 文章列表 2024年02月28日 0 点赞 0 评论 196 浏览 评分:0.0
线性筛法(最小质因数) 摘要://线性筛法-找质数以及每个数的最小质因数 #include<iostream> using namespace std; const int N=1e5+10; int n,p[…… 文章列表 2024年02月28日 0 点赞 0 评论 153 浏览 评分:0.0