题解 2907: 不与最大数相同的数字之和 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;const int N=1e5+5;typedef long long ll;in…… 题解列表 2024年04月21日 0 点赞 0 评论 281 浏览 评分:9.9
利用斐波那契数列求解 摘要:解题思路:观察发现,分母的值,从第三个分数开始,为前两个的和,分子也有类似的规律,如果纯在数列f(n) = f(n-1) + f(n-2),其中f(0) = 1,f(1)=2.则sum = f(1)/…… 题解列表 2024年04月21日 0 点赞 0 评论 393 浏览 评分:9.9
猴子吃桃的问题,五行代码 摘要:解题思路:注意事项:参考代码:N = int(input())my_list = [None] * (N-1) + [1]for i in reversed(range(1,N)): # revers…… 题解列表 2024年04月21日 1 点赞 0 评论 457 浏览 评分:9.9
题解 1099: 校门外的树 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;const ll N=1e5+5;int…… 题解列表 2024年04月21日 0 点赞 0 评论 279 浏览 评分:9.9
2839:石头剪刀布 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>;using namespace std;int main(){ int n,na,nb; cin>>n>>na…… 题解列表 2024年04月22日 0 点赞 0 评论 355 浏览 评分:9.9
dfs经典马走日 摘要: ```cpp #include using namespace std; #define int long long #define endl "\n" const int N…… 题解列表 2024年04月23日 0 点赞 0 评论 358 浏览 评分:9.9
分布式队列AC做法——主要看偏移量,与元素值无关 摘要:参考代码:import java.io.*; import java.util.*; public class Main { static BufferedReader in = n…… 题解列表 2024年04月23日 2 点赞 0 评论 923 浏览 评分:9.9
第一个带类的程序 摘要:解题思路:注意事项:参考代码: import java.util.Scanner;class Data{ private int year,month,day; public void …… 题解列表 2024年04月23日 0 点赞 0 评论 451 浏览 评分:9.9
编写题解 1622: 蓝桥杯算法训练VIP-字符删除 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char arr[21] = { 0 },ch=0; int d = 0; gets(arr); ch=getc…… 题解列表 2024年04月23日 0 点赞 0 评论 566 浏览 评分:9.9
好好学string及相关方法~ 摘要:***阅读须知:s.substr(x)的意思是从字符串s的第x个开始截取到s的末尾,那substr(0,x)不必多说了吧...为方便大家更容易理解,我将解决字符串之间的拼接的部分单独放入一个check…… 题解列表 2024年04月24日 0 点赞 0 评论 414 浏览 评分:9.9