编写题解 1171: 蟠桃记 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int a, sum, j; sum = 1, j = 0; while (scanf("%…… 题解列表 2023年01月10日 0 点赞 0 评论 378 浏览 评分:0.0
枚举-时间复杂度N 摘要:解题思路:就是枚举加上一个二分注意事项:参考代码:num=eval(input())list1=list(map(int,input().split()))list2=sorted(list1)res…… 题解列表 2023年01月10日 0 点赞 0 评论 949 浏览 评分:9.9
1536: 蓝桥杯算法提高VIP-最长单词 摘要:```cpp #include using namespace std; int main() { int t=0; string s,v; char a[101…… 题解列表 2023年01月10日 0 点赞 0 评论 641 浏览 评分:9.9
c++贪心+数学 摘要:```cpp #include using namespace std; #define ll long long int main() { ll n; cin>>n; …… 题解列表 2023年01月10日 1 点赞 0 评论 367 浏览 评分:9.9
1779: 你的第一个C语言程序 摘要:直接把输出内容粘贴上去就行了(打表) ```cpp #include using namespace std; int main() { cout…… 题解列表 2023年01月10日 0 点赞 0 评论 571 浏览 评分:6.0
2009: 第一个带类的C++程序 摘要:```cpp #include using namespace std; class Date { private: int year,month,day; …… 题解列表 2023年01月10日 0 点赞 0 评论 471 浏览 评分:9.9
3067: 大盗阿福 摘要:小心超时 ```cpp #include using namespace std; int w[100001],f[100001][2],n,T; int main() { io…… 题解列表 2023年01月10日 0 点赞 0 评论 421 浏览 评分:9.9
2864: 单词替换 摘要:```cpp #include #include using namespace std; int main() { int n=0; char s[101][101];…… 题解列表 2023年01月10日 0 点赞 0 评论 558 浏览 评分:9.9
编写题解 1202: 多输入输出练习1 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<malloc.h> int main() { int n; int j; j = 0; int…… 题解列表 2023年01月10日 0 点赞 0 评论 513 浏览 评分:9.9
3131: 病毒(virus) 摘要:```cpp #include #include #include #include using namespace std; int n,cnt,in[50001],ans[50001]…… 题解列表 2023年01月10日 0 点赞 0 评论 647 浏览 评分:7.7