超好懂的字符串的连接 摘要:解题思路:就两个char 类型的函数呗,先输入,在写一个函数用另一个数组将它们存储,最后输出即可;注意事项:注意先后顺序即可;参考代码:#include<stdio.h>#include<string…… 题解列表 2022年07月19日 0 点赞 0 评论 667 浏览 评分:8.5
权值线段树+离散化+动态规划,时间复杂度O(nlogn) 摘要:解题思路:权值线段树+离散化+动态规划注意事项:参考代码:#include<bits/stdc++.h>using namespace std;#define maxn 100010#define m…… 题解列表 2022年08月23日 0 点赞 2 评论 1998 浏览 评分:8.5
左移右移 列表模拟(java) 摘要:解题思路:我们用两个list 记录一下左移的数 和 右移的数 但是 一个数可能重复移动多次 所以针对这种情况 开一个int数组记录一下最后一次这个数是左移还是右移 左移我们赋值为1 右移赋值为2 如果…… 题解列表 2022年10月01日 0 点赞 1 评论 1444 浏览 评分:8.5
简简单单看我的 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n; scanf("%d",&n); int cdd[n]; for(int i=0;i<n;i++){…… 题解列表 2022年10月23日 0 点赞 1 评论 985 浏览 评分:8.5
(cC语言超简单版)奥运奖牌计数 摘要:解题思路:分别计算金银铜三种的数量,这里要用到2维数组注意事项:参考代码:#include<stdio.h>int main(){ int n; int a[100][3]; int…… 题解列表 2022年11月12日 0 点赞 0 评论 537 浏览 评分:8.5
1187: 假币问题 摘要:```cpp #include #include using namespace std; int main() { int n; cin>>n; while(…… 题解列表 2022年11月30日 1 点赞 0 评论 624 浏览 评分:8.5
飞机降落蓝桥杯 摘要:解题思路:// 错误点 // vis是否需要清0,不需要,最后回溯,完成清0// come use dw 关系// 主要到time取max(time,come[i]) ;; //如果time < co…… 题解列表 2023年05月03日 0 点赞 0 评论 2119 浏览 评分:8.5
鸡尾酒疗法 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n; double x,y,d,d1…… 题解列表 2023年11月12日 0 点赞 0 评论 590 浏览 评分:8.5
题解 2751: 超级玛丽游戏 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ cout<<" ********"<…… 题解列表 2023年12月05日 0 点赞 0 评论 361 浏览 评分:8.5
2770: 计算浮点数相除的余数 摘要:解题思路:注意事项:参考代码:a,b=map(float,input().split())c=a%bprint("%g"%c)…… 题解列表 2024年01月23日 0 点赞 0 评论 827 浏览 评分:8.5