不用switch-case 摘要:解题思路:或的用法注意事项:参考代码:#include <stdio.h>int main() { int day; scanf(&qu…… 题解列表 2025年10月05日 0 点赞 0 评论 111 浏览 评分:0.0
优先队列实现看病,取消同步流避免超时 摘要:解题思路:优先队列,实现看病案例注意事项:取消同步流,避免超时参考代码://看病 取消同步流,加快速度#include <bits/stdc++.h>using namespace std…… 题解列表 2025年10月04日 0 点赞 0 评论 130 浏览 评分:4.0
冒泡排序(菜鸟记录) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int arr[3]; for(int i=0;…… 题解列表 2025年10月03日 1 点赞 0 评论 318 浏览 评分:6.0
区间dp——记忆化搜索 摘要:参考代码:importjava.util.Scanner;/***@author小张*{@code@…… 题解列表 2025年10月02日 2 点赞 0 评论 203 浏览 评分:6.0
哥德巴赫曾猜测思路简单解 摘要:解题思路:注意事项:参考代码:#include<iostream>#define MAX 32767using namespace std;bool isPrime(int num){&n…… 题解列表 2025年09月29日 0 点赞 0 评论 253 浏览 评分:7.0
优雅的代码往往只需要一个简单的偏移量就能搞定! 摘要: #include #include #include #include using namespace std; const int dx[] = {-2,-2,2,2,1,-1…… 题解列表 2025年09月29日 3 点赞 0 评论 212 浏览 评分:10.0
求10000以内n的阶乘 摘要:解题思路:注意事项:Python默认限制了可以转换为字符串的整数的最大位数为4300位。由于10000的阶乘远大于这个限制,因此抛出了ValueError。参考代码:import mathimport…… 题解列表 2025年09月27日 0 点赞 0 评论 259 浏览 评分:0.0
编写题解 3106: 最优乘车(travel) 摘要:C++代码:```cpp#include #include #include #include using namespace std;const int INF=0x3f…… 题解列表 2025年09月27日 1 点赞 0 评论 213 浏览 评分:0.0
C语言和C++两种写法 摘要:###C语言 无封装#include<stdio.h>#define MAX 100;int main(){ int i,j; int …… 题解列表 2025年09月27日 0 点赞 0 评论 266 浏览 评分:0.0
2798: 整数序列的元素最大跨度值 摘要:#include <bits/stdc++.h>using namespace std;int main(){ int n,maxx= -1e18 ,minn=1…… 题解列表 2025年09月24日 0 点赞 0 评论 379 浏览 评分:0.0