码迷,mamicode.com
首页 >  
搜索关键字:lync online    ( 3635个结果
Pangu Separates Heaven and Earth(签到题)(The 2019 Asia Nanchang First Round Online Programming Contest)
Long long ago, the sky and the earth were not separated, and the universe was chaotic. There was a giant named Pangu who slept for eighteen thousand y ...
分类:其他好文   时间:2019-09-08 22:13:07    阅读次数:133
Fire-Fighting Hero (The 2019 Asia Nanchang First Round Online Programming Contest)
This is an era of team success, but also an era of heroes. Throughout the ages, there have been numerous examples of using the few to defeat the many. ...
分类:其他好文   时间:2019-09-08 21:54:02    阅读次数:130
The 2019 Aisa Nanchang First Round Online Programming Contest ——H
思路:矩阵快速幂+map 代码: ...
分类:其他好文   时间:2019-09-08 18:31:07    阅读次数:92
2019 ICPC Nanjing Regional Online Contest
比较自闭的一场网络赛,题目质量不错。 题目链接:https://www.jisuanke.com/contest/3004 A: upsolver: czq 经典的二维偏序问题,求(x,y)左下角点的个数。对x和y升序排序,用树状数组维护每个纵坐标y已经出现的次数,这样就可以动态把点的纵坐标加入树状 ...
分类:其他好文   时间:2019-09-06 22:39:16    阅读次数:119
git ----> 基本使用
git 基本命令之一 git init 初始化一个git仓库 git add file1 file2 ... 允许把一个或者多个文件添加到仓库 git commit -m "xxxx" 把文件提交到仓库 git status 查看工作区的状态 git diff 查看修改内容 git diff HEA ...
分类:其他好文   时间:2019-09-05 23:15:34    阅读次数:119
The 2019 Asia Yinchuan First Round Online Programming F. Moving On
t题目链接:https://nanti.jisuanke.com/t/41290 思路:题目意思很容易想到floyd,但是由于危险度的限制,我们该怎么跑floyd呢。 一开始理解错题目了,以为u->v包括终点起点都不能超过给的危险度,不过看样例,好像只需要中间的城市不能超过危险度。 我们可以这么想, ...
分类:其他好文   时间:2019-09-05 18:40:39    阅读次数:94
2017 ACM/ICPC Asia Regional Shenyang Online E number number number 题解
分析: 当n=1时ans=4=f(5)-1; n=2,ans=12=f(7)-1; n=3,ans=33=f(9)-1; 于是大胆猜想ans=f(2*k+3)-1。 之后用矩阵快速幂求解f(n)即可,O(logn)。 AC code: 1 #include<bits/stdc++.h> 2 usin ...
分类:其他好文   时间:2019-09-03 22:06:08    阅读次数:80
Invalid arguments ' Candidates are: std::basic_ostream<char,std::char_traits<char>> & write(const char *, int) '
代码十分简单,通过对比vs,得知gcc调用的是ostream.tcc文件中的write函数write(const _CharT* __s, streamsize __n)。 vs中是定义在ostream文件中的write(const _Elem* _Str,streamsize _Count),gc ...
分类:其他好文   时间:2019-09-03 13:42:26    阅读次数:141
Bandit
CSE599:online and adaptive machine learning Lecture 3:Stochastic Multi-Armed Bandits, Regret Minimization csdn bandit 算法(3) -- UCB算法 推荐系统的EE问题及Bandit算 ...
分类:其他好文   时间:2019-09-02 09:40:39    阅读次数:83
【CF908D】New Year and Arbitrary Arrangement
Problem Description 给定三个数 $k,pa,pb$ ,每次有 $\frac{pa}{pa+pb}$ 的概率往后面添加一个 ,有 $\frac{pb}{pa+pb}$ 的概率往后面添加一个 ,当出现了 $k$ 个形如 的子序列(不用连续)时停止。 求最后子序列 的期望个数。 答案对 ...
分类:其他好文   时间:2019-09-01 17:00:19    阅读次数:67
3635条   上一页 1 ... 33 34 35 36 37 ... 364 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!