易于理解-打印平行四边形(有注释) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>intmain(){intn,i,j,k…… 题解列表 2025年02月14日 0 点赞 0 评论 217 浏览 评分:0.0
记录一下(烦人的dfs) 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std; int a[100];int a1[100] ,a2[100],&nb…… 题解列表 2025年02月14日 0 点赞 0 评论 355 浏览 评分:0.0
可以只用printf-(投机取巧)字符菱形 摘要:解题思路:注意事项:参考代码:#include<stdio.h>intmain(){charc;&n…… 题解列表 2025年02月14日 1 点赞 0 评论 572 浏览 评分:0.0
双向循环链表(作代码记录用) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>#include<string.h>typedef struct…… 题解列表 2025年02月14日 0 点赞 0 评论 239 浏览 评分:0.0
3018:末两位数 摘要:解题思路:注意事项:参考代码:n=int(input())sum=1992**na=sum%100print(f'{a:0>2d}')…… 题解列表 2025年02月15日 0 点赞 0 评论 113 浏览 评分:0.0
[信息学奥赛一本通T1495-孤岛营救问题] - (BFS,SPFA,DIjkstra)+状压DP 摘要:```cpp#include // #define int long long // 自觉去掉,当需要 memset 数组为 0x3f 时使用#define INF 0x3f3f3f3f …… 题解列表 2025年02月15日 0 点赞 0 评论 164 浏览 评分:0.0
Python代码-8除不尽的数 摘要:```pythondef check(n): if n % 8 == 1: if (n//8) % 8 == 1: if (n//8//8) …… 题解列表 2025年02月15日 0 点赞 0 评论 192 浏览 评分:0.0
蓝桥杯基础练习-十六进制转八进制 摘要:```cpp#includeusing namespace std;int main(){ //乱搞 int a,b,c; cin>>a>>b>>c; cout…… 题解列表 2025年02月15日 0 点赞 0 评论 157 浏览 评分:0.0
打印平行四边形 摘要:```cpp#includeusing namespace std;int main(){ int a,b,c,d; scanf("%d",&a); for(b=a…… 题解列表 2025年02月15日 0 点赞 0 评论 133 浏览 评分:0.0
[信息学奥赛一本通T1498-Roadblocks] - Dijkstra求次短路 摘要:```cpp#include // #define int long long // 自觉去掉,当需要 memset 数组为 0x3f 时使用#define INF 0x3f3f3f3f…… 题解列表 2025年02月16日 0 点赞 0 评论 146 浏览 评分:0.0