1234: 检查一个数是否为质数 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ long long n; cin>>n; …… 题解列表 2024年03月30日 0 点赞 0 评论 299 浏览 评分:0.0
暴力排序对照 摘要:解题思路:注意事项:参考代码:import java.util.*;import java.math.*;public class Main{ static Scanner sc=new Scanne…… 题解列表 2024年03月30日 0 点赞 0 评论 274 浏览 评分:0.0
题解 2219: 蓝桥杯算法训练-大等于n的最小完全平方数 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n; cin>>n; while(1) { if(…… 题解列表 2024年03月30日 0 点赞 0 评论 220 浏览 评分:0.0
编写题解 1536: 蓝桥杯算法提高VIP-最长单词 摘要:解题思路:注意事项:按空格分割为多个字符串,在比较每个字符串的长度。参考代码:#include<stdio.h>#include<string.h>void max(char* p, char sz[…… 题解列表 2024年03月30日 0 点赞 0 评论 578 浏览 评分:0.0
编写题解 1487: 蓝桥杯算法提高VIP-不同单词个数统计 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>void max(char* p, char sz[110][15],int s){ i…… 题解列表 2024年03月30日 0 点赞 0 评论 391 浏览 评分:0.0
最简单的解法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n; scanf("%d",&n); int i=1; long long j=1,sum=0; for…… 题解列表 2024年03月30日 0 点赞 0 评论 251 浏览 评分:0.0
python drgrregrg 摘要:解题思路:注意事项:参考代码:n = int(input())c, w ,t = 1, 1, 1while t < n: c += 1 w = 3*w t += w print…… 题解列表 2024年03月30日 0 点赞 0 评论 248 浏览 评分:0.0
c++暴力枚举时间统计 摘要:解题思路:枚举1000秒内所有情况,再利用map记录x y的最大情况注意事项:参考代码:#include<bits/stdc++.h>#define int long longusing namesp…… 题解列表 2024年03月30日 0 点赞 0 评论 281 浏览 评分:0.0
编写题解 2885: 矩阵转置 摘要:解题思路: 刷题过程中发现的快速转置方法注意事项:参考代码:n,m=map(int,input().split())a=[]for _ in range(n): a.append(i…… 题解列表 2024年03月30日 0 点赞 0 评论 314 浏览 评分:0.0
子串简写的两种解题思路:1:前缀和O(n);2:双指针O(n) 摘要:解题思路:对于前缀和,我们用L和R表示字符串的左端点和右端点;我们用一个前缀和数组s[N]来维护a出现的次数,表示在第i位之前有多少个a。处理完后直接将字符串从后往前枚举,如果找到一个b,则可以匹配前…… 题解列表 2024年03月30日 0 点赞 0 评论 531 浏览 评分:0.0