笃_定
笃_定
全部文章
分类
2019 GDUT寒假集训解题报告(专题及训练赛)(14)
2019 GDUT寒假集训解题报告(排位赛)(15)
2020寒假集训(12)
2020牛客寒假算法基础集训营(2)
codeforce比赛题(5)
dfs(1)
dp(1)
二分功能的简单实现(1)
常见数学结论(1)
未归档(1)
每日一题(77)
每日算法打卡(11)
每日训练(1)
洛谷娱乐场(1)
算法学习过程中的心得(1)
网络赛(1)
随笔(12)
题解(1)
归档
标签
去牛客网
登录
/
注册
笃_定的博客
全部文章
(共160篇)
NC20857(Xor Path)
感受思路 #include <bits/stdc++.h> using namespace std; typedef long long ll; typedef unsigned long long ull; const int maxn = 5e5 + 10; struct ed...
2020-08-16
0
544
NC20860(兔子的区间密码 )
感受思路 第1位:0 1 0 1 0 1 0 1第2位:0 0 1 1 0 0 1 1第3位:0 0 0 0 1 1 1 1第4位:0 0 0 0 0 0 0 0 第1位:0 1| 0 1 0 1| 0 1第2位:0 0| 1 1 0 0| 1 1第3位:0 0| 0 0 1 1| 1 1第...
2020-08-16
0
558
NC23482(小A的最短路 )
感受思路 #include <bits/stdc++.h> using namespace std; typedef long long ll; const int maxn = 3e5 + 10; const ll mod = 998244353; struct edge{ ...
2020-08-16
0
524
NC14526(购物 )
感受思路 #include <bits/stdc++.h> using namespace std; typedef long long ll; const int maxn = 300 + 10; const ll mod = 998244353; int n, m; int cos...
2020-08-16
0
626
NC20811(蓝魔法师 )
前言感受思路复杂度证明 #include <bits/stdc++.h> using namespace std; typedef long long ll; const int maxn = 2e3 + 10; const ll mod = 998244353; struct edg...
2020-08-16
0
527
NC14700(追债之旅 )
感受 思路 AC代码 #include <bits/stdc++.h> using namespace std; typedef long long ll; const int maxn = 2e5 + 10; const ll inf = 1e18; struct edge{ ...
2020-08-15
0
509
NC20565([SCOI2009]生日礼物 )
感受思路 复杂度:O(n^2) for(l:1~n) for(r:l~n) if(区间[l,r]存在k种珍珠) ans = min(asn, r.pos - l.pos); #include <bits/stdc++.h> using namespace st...
2020-08-15
0
542
NC20566([SCOI2010]游戏)
感受思路 #include <bits/stdc++.h> using namespace std; typedef long long ll; const int maxn = 10000 + 10; int m; int fa[maxn]; int num[maxn]; b...
2020-08-15
0
677
NC19833(地斗主 )
思路 #include <bits/stdc++.h> using namespace std; typedef long long ll; struct mat{ int r, c; ll a[5][5]; mat(){ memset(a, 0...
2020-08-14
0
621
NC110793(Mr. Kitayuta, the Treasure Hunter )
感受思路开始转入正题 int get(int dis){ return dis - d + 250; } #include <bits/stdc++.h> using namespace std; typedef long long ll; const int maxn = 3...
2020-08-12
0
536
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页