coder+9
coder+9
全部文章
题解
日志(4)
未归档(12)
读书笔记(2)
归档
标签
去牛客网
登录
/
注册
coder+9的博客
努力进阶中,当前未能恐怖如斯
全部文章
/ 题解
(共35篇)
题解 | #龙神的成绩单#
注意题目影子是后面四轮 护盾是在5个回合后生效 这样就简单了 典中典 考试时没法做出来 回来看时就发现是通过80% #include<bits/stdc++.h> using namespace std; int m,a0,a1,b0,b1; int sum1,sum2; in...
2021-12-19
0
583
火凤燎原
牛啊 这次要快速读入 memset代价太高了 https://www.luogu.com.cn/paste/vg035rgp 问题模型 给定一棵树,求其中蒲公英的个数。 模型分析 对于一个点 uu,假设 uu 的孩子结点有 kk 个,它们分别是 v_{1\cdots k}v 1⋯k ,...
2021-12-18
1
599
金蛇狂舞
剪枝顺序出问题了 。。。。没想到 对阶乘做限制 学到了ceil floor这两个函数 #include<cmath> #include<iostream> using namespace std; typedef long long ll; int n; ll x,y; l...
2021-12-18
0
412
题解 | #寻找最后之作#
缠斗了一个小时 发现是getchar问题 吐血 下午去查查getchar用法 https://www.runoob.com/cprogramming/c-function-getchar.html 牛啊 #include<iostream> #include<cstring>...
2021-12-14
0
429
题解 | #LP钱不够#
我以前在写啥呀 #include<iostream> #include<stack> #include<cstring> #include<cmath> using namespace std; typedef long long ll; int a[...
2021-12-14
0
468
题解 | #老子的全排列呢#
奇怪的知识提升了!还有next_permutation()这种东西 牛蛙 #include<iostream> #include<set> #include<map> using namespace std; typedef long long ll; cons...
2021-12-12
0
374
题解 | #列一列#
哈哈 这道题好离谱啊 正常读入长整形是不行滴! ">#include<set> #include<map> using namespace std; typedef long long ll; const int N =1e5; map<ll,int> m; ll...
2021-12-12
3
680
题解 | #简单的数据结构#
学习一种新的STL 双向队列 头文件是#include ">#include<set> #include<deque> #include<algorithm> using namespace std; int n,a[100010],m; deque<int...
2021-12-12
0
464
题解 | #选择困难症#
我只想到了朴素方法,膜拜楼下大佬的剪枝思路,蛮快的。 if(res>m){ ll re=1; for(int j = i;j<k;j++){ re*=(asize[j]+1);//注意加上没有拿该物品的情况 } ...
2021-12-09
1
441
题解 | #牛牛的星际旅行#
注意本题的限制条件 重点 而且假如某件衣服是在第x天穿的,那么下一次最早能穿这件衣服的时期为x+N-1 这个侧面显示了第一周后穿的衣服如果在最后一周提前穿 至少要经历 (后穿的下标-提前穿的小标) week ">using namespace std; int n,r,m = 0; int a[...
2021-12-08
1
396
首页
上一页
1
2
3
4
下一页
末页