摘要:
文件夹套文件夹,某些放入扑克牌,请你找出所有有扑克牌的文件夹,并说出你的方法。 请你写出4个数的全排列 for(int i = 1; i <= 4; i++) for for for 方法: 递进深度,枚举可行值 P1157 组合的输出 #include<bits/stdc++.h> using n 阅读全文
摘要:
b站啃芝士 ```汉字编码 https://www.qqxiuzi.cn/zh/hanzi-gb2312-bianma.php 汉字字符集编码查询 https://www.qqxiuzi.cn/bianma/zifuji.php 汉字字符自编码 bilibili https://www.bilibi 阅读全文
摘要:
欧拉路,欧拉回路 欧拉路指的是:存在这样一种图,可以从其中一点出发,不重复地走完其所有的边。下面哪些图是欧拉图? 哪些是欧拉路或欧拉回路? 连通的无向图为(半)欧拉图的条件:1.若所有顶点的度为偶数,则能够找到从任意顶点出发的欧拉回路。反之也成立,即若能够找到从任意顶点出发的欧拉回路,则所有顶点的度 阅读全文
摘要:
#A P3403 跳楼机 #B P2662 牛场围栏 #C P2371 [国家集训队]墨墨的等式 #D P4156 [WC2016]论战捆竹竿 跳楼机 #include<iostream> #include<cstdio> #include<cmath> #include<cstring> #inc 阅读全文
摘要:
1.家谱树 寻寻有一个大家庭,辈分关系很混乱,请你帮他梳理一下家庭成员的关系。 输入: 第一行n,表示共5个人。 接下来的n行,第i行表示第i个人的孩子。 每行以0结束。 输出: 一行序列,空格隔开,使得每个人的后辈都比那个人后出现。 spj #include<iostream> #include< 阅读全文
摘要:
&st表 #include<cstdio> #include<iostream> #include<cstring> #include<cmath> using namespace std; int n,q,l,r,a[100005],f[100005][20]; int main(){ scanf 阅读全文
摘要:
春有百花秋有月,夏有凉风冬有雪,若无闲事挂心头,便是人间好时节。 --《无门关》 解析:如果能没有忧思悲恐缠绕心田,那么每年每季每天都是人间最好的时节。 Tarjan讲解,时间戳和low[] P2341(受欢迎的奶牛) //统计出度为0的奶牛联通块 //如果出度为0的奶牛连通块不止一个,则没有一只奶 阅读全文
摘要:
入门:绿豆蛙的归宿UVA10288 优惠券 Couponsbzoj1419 red is good P1654 OSU!P4550 收集邮票P1850 换教室P3802 小魔女帕琪 P2634 [国家集训队]聪聪可可 P3750 [六省联考2017]分手是祝愿 P3412 仓鼠找sugar II P 阅读全文
摘要:
t1切圆 cut #include<cstdio> using namespace std; long long n; int main(){ freopen("cut.in","r",stdin); freopen("cut.out","w",stdout); scanf("%lld",&n); 阅读全文
摘要:
t1扫雷 二维数组,方向数组 #include<cstdio> using namespace std; char c[105][105];int a[105][105],n,m; int dx[]={0,1,1,1,0,-1,-1,-1},dy[]={1,1,0,-1,-1,-1,0,1}; in 阅读全文