首页
题库
公司真题
专项练习
面试题库
在线编程
面试
面试经验
AI 模拟面试
简历
求职
学习
基础学习课
实战项目课
求职辅导课
专栏&文章
竞赛
搜索
我要招人
发布职位
发布职位、邀约牛人
更多企业解决方案
在线笔面试、雇主品牌宣传
登录
/
注册
生之、如舟
获赞
78
粉丝
28
关注
21
看过 TA
80
男
河南理工大学
2025
golang
IP属地:湖南
在校大学生一枚
私信
关注
拉黑
举报
举报
确定要拉黑生之、如舟吗?
发布(181)
评论
刷题
生之、如舟
关注TA,不错过内容更新
关注
2020-11-11 19:24
已编辑
河南理工大学 golang
B. Kay and Snowflake 【树的重心】1900
B. Kay and Snowflake B. Kay and SnowflakeAfter the piece of a devilish mirror hit the Kay's eye, he is no longer interested in the beauty of the roses. Now he likes to watch snowflakes. Once upon a time, he found a huge snowflake that has a form of the tree (connected acyclic graph) consisting of n ...
0
点赞
评论
收藏
分享
2020-11-10 20:42
河南理工大学 golang
C. Divisibility by Eight 【数学】1500分
C. Divisibility by Eight You are given a non-negative integer n, its decimal representation consists of at most 100 digits and doesn't contain leading zeroes. Your task is to determine if it is possible in this case to remove some of the digits (possibly not remove any digit at all) so that the resu...
0
点赞
评论
收藏
分享
2020-11-10 20:05
已编辑
河南理工大学 golang
D. Solve The Maze 【图论】1700分
D. Solve The Maze Vivek has encountered a problem. He has a maze that can be represented as an 𝑛×𝑚 grid. Each of the grid cells may represent the following: Empty — '.'Wall — '#'Good person — 'G'Bad person — 'B'The only escape from the maze is at cell (𝑛,𝑚). A person can move to a cell only if ...
0
点赞
评论
收藏
分享
2020-11-10 15:06
已编辑
河南理工大学 golang
图论基础题
Pairs 判断边是否完全覆盖 1500分Toad Ivan has 𝑚 pairs of integers, each integer is between 1 and 𝑛, inclusive. The pairs are (𝑎1,𝑏1),(𝑎2,𝑏2),…,(𝑎𝑚,𝑏𝑚). He asks you to check if there exist two integers 𝑥 and 𝑦 (1≤𝑥<𝑦≤𝑛) such that in each given pair at least one integer is equal to 𝑥 or 𝑦. In...
0
点赞
评论
收藏
分享
2020-10-04 21:28
已编辑
河南理工大学 golang
The 2018 ACM-ICPC Asia Qingdao Regional Contest
The 2018 ACM-ICPC Asia Qingdao Regional Contest C - Flippy Sequence #include <bits/stdc++.h> #define ios ios_base::sync_with_stdio(0),cin.tie(0),cout.tie(0) #define debug freopen("in.txt","r",stdin),freopen("out.txt","w",stdout); #define pb push_back #d...
Ryuichi的算法分享
0
点赞
评论
收藏
分享
2020-10-03 20:13
已编辑
河南理工大学 golang
2018浙江省省赛
2018浙江省省赛 A 保证先升后降,然后没有不合法的情况,就是Yes #include <bits/stdc++.h> #define ios ios_base::sync_with_stdio(0),cin.tie(0),cout.tie(0) #define debug freopen("in.txt","r",stdin),freopen("out.txt","w",stdout); #define pb push_back #define all(x) x.begin(),x.end() #...
Ryuichi的算法分享
0
点赞
评论
收藏
分享
2020-07-19 12:41
河南理工大学 golang
牛客多校第二场
D #include <bits/stdc++.h> #define ios ios_base::sync_with_stdio(0),cin.tie(0),cout.tie(0) #define debug freopen("in.txt","r",stdin),freopen("out.txt","w",stdout); using namespace std; typedef long long ll; typedef pair<int,int> pii; const int max...
0
点赞
评论
收藏
分享
2020-07-19 12:20
已编辑
河南理工大学 golang
牛客多校第一场
F 定理:两个字符串s,t,其循环节各自为p,q,如果p+q-gcd(p,q)相等,则之后就一直相等 #include <bits/stdc++.h> #define ios ios_base::sync_with_stdio(0),cin.tie(0),cout.tie(0) #define debug freopen("in.txt","r",stdin),freopen("out.txt","w",stdout); using namespace std; typedef long long l...
0
点赞
评论
收藏
分享
2020-07-19 11:06
已编辑
河南理工大学 golang
牛客多校第三场
A 有鱼则抓鱼,没有鱼也没有鱼饵就尝试用已有的鱼抓鱼。在没有鱼有鱼饵的时候,有两种选择:1.用已有鱼饵抓鱼,放弃当前阶段的鱼饵2.不抓鱼,而去抓鱼饵。使用第2种,如果游戏结束后,发现还有剩余的鱼饵a个,而这些鱼饵都是来自于(没有鱼,有鱼饵)a个阶段,所以可以安排这a个阶段重复进行这一阶段抓鱼饵,下一阶段抓鱼,于是就可再得到a/2鱼 #include <bits/stdc++.h> #define ios ios_base::sync_with_stdio(0),cin.tie(0),cout.tie(0) #define debug freopen("in.txt&qu...
0
点赞
评论
收藏
分享
2020-05-26 23:39
河南理工大学 golang
2020-05-26
在牛客打卡23天,今天也很努力鸭!
0
点赞
评论
收藏
分享
2020-05-01 00:00
已编辑
河南理工大学 golang
HDU - 1847 Good Luck in CET-4 Everybody!【博弈论】【SG函数】
HDU - 1847 Good Luck in CET-4 Everybody! 题目链接:https://vjudge.net/problem/HDU-1847 思路 SG函数模板题 代码 #include <iostream> #include <cstring> #define ios ios_base::sync_with_stdio(0),cin.tie(0),cout.tie(0) #define debug freopen("in.txt","r",stdin),freopen("out.txt&quot...
Ryuichi的算法分享
0
点赞
评论
收藏
分享
2020-04-30 16:56
河南理工大学 golang
C++ 语法知识备忘录
控制精度 ans = 1.32424255252242 cout.precision(10); cout<<ans;
Ryuichi的算法分享
0
点赞
评论
收藏
分享
2020-05-04 15:51
已编辑
河南理工大学 golang
Atcoder Educational DP Contest
A - Frog 1 #include<bits/stdc++.h> #define ios ios_base::sync_with_stdio(0),cin.tie(0),cout.tie(0) #define debug freopen("in.txt","r",stdin),freopen("out.txt","w",stdout); #define fs first #define sc second using namespace std; typedef long long ll; typ...
Ryuichi的算法分享
0
点赞
评论
收藏
分享
2020-04-29 22:53
已编辑
河南理工大学 golang
ICPC Greater New York Region 2019 题解
A #include<bits/stdc++.h> #define ios ios_base::sync_with_stdio(0),cin.tie(0),cout.tie(0) #define debug freopen("in.txt","r",stdin),freopen("out.txt","w",stdout); #define fs first #define sc second using namespace std; typedef long long ll; typedef pair...
Ryuichi的算法分享
0
点赞
评论
收藏
分享
2020-04-26 17:20
已编辑
河南理工大学 golang
Acwing243. 一个简单的整数问题2 【分块】
243. 一个简单的整数问题2 题目链接:https://www.acwing.com/problem/content/description/244/ 思路 把序列分成sqrt(N)块,每块sqrt(N)个,最后一块小于等于sqrt(N)。 大块维护块的总和,以及块的偏移量 小块直接暴力修改,修改的时候,所在块的总和也要加上改变量 代码 #include<bits/stdc++.h> #define ios ios_base::sync_with_stdio(0),cin.tie(0),cout.tie(0) #define debug freopen("in.txt...
Ryuichi的算法分享
0
点赞
评论
收藏
分享
1
2
3
4
5
6
13
关注他的用户也关注了:
牛客网
牛客企业服务