关于如果在hexo博客中插入图片
hexo博客中如何插入图片 在Hexo博客中插入图片的各种方式
洛谷题单 【算法2-4】字符串
洛谷题单 【算法2-4】字符串P3375 【模板】KMPhttps://www.luogu.com.cn/problem/P3375 12345678910111213141516171819202122232425262728293031323334353637383940#include<bits/stdc++.h>using namespace std;using u32 = unsigned;#define i128 __int128;using ll = long long;//#define int llusing u64 = unsigned long long;const ll inf = 1e9;const ll INF = 1e18;const int N=1e6+10;int ne[N];signed main(){ ios::sync_with_stdio(false); cin.tie(nullptr); string s1,s2; cin>>s1>>s2; int...
如果关闭开启vscode代码提示
如果关闭开启vscode代码提示 如图所示在左下角打开设置或者用快捷键ctrl+,(不过这个经常被占用) 然后搜索==quicksuggestion== other:表示注释以及字符串以外的区域的快速建议 comments:表示注释区域的快速建议- strings:表示字符串内的快速建议 如果想把注释彻底关闭的话就直接三个都选other,一般算竞选手会习惯把这些都关闭了。 然后搜索==启用或禁用自动完成建议== 这两个全部取消勾选就行了
学习心得
学习知识的时候不适合第一遍十分仔细的看,第一遍大概的看,有个总体印象就行了,不要想着自己看一遍就必须得理解,不然看第二遍浪费时间,其实效率最高的就是知行合一,在运用的过程中熟悉刚学会的知识,有哪一点没看到或者忘记了再赶紧学一遍就行了。 不要有那么多的规划,没有什么状态好不好的,只要有学习的想法就直接开始学,状态就会越来越好。 早上刚醒不要玩手机,不然一天都容易分心。 一年的努力换来之后的顺利是非常值的,不要因为自己的懒惰而害怕,焦虑的时候就勇敢去做。不到筋疲力尽的时候就不要放松,自己其实没有那么累,放松之后带来的是更大的焦虑。 你自己选择的路就不要后悔,自己的路自己走。
常见算法
常见算法莫队算法12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061#include<bits/stdc++.h>using namespace std;using u32 = unsigned;#define i128 __int128;using ll = long long;//#define int llusing u64 = unsigned long long;const ll inf = 1e9;const ll INF = 1e18;const int N=5e4+10;int bl;ll sum;struct node{ int l,r,id;}v[N];int a[N],cnt[N];bool cmp(node &a,node&b){ if(a.l/bl!=b.l/bl)return a.l<b.l; ...
代码模板
代码模板目录 acm solve power 并查集DSU 树状数组Fenwick 线段树SegmentTree KMP Trie(字典树) acm123456789101112131415161718#include<bits/stdc++.h>using namespace std;using u32 = unsigned;#define i128 __int128;using ll = long long;//#define int llusing u64 = unsigned long long;const ll inf = 1e9;const ll INF = 1e18;signed main(){ ios::sync_with_stdio(false); cin.tie(nullptr); return 0; } solve12345678910111213141516171819202122232425#include<bits/stdc++.h>using namespace...
进阶图论(最短路系列)
进阶图论(最短路系列)题目狂刷P3371 【模板】单源最短路径(弱化版)https://www.luogu.com.cn/problem/P3371 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849#include<bits/stdc++.h>using namespace std;using u32 = unsigned;#define i128 __int128;using ll = long long;//#define int llusing u64 = unsigned long long;const ll inf = 1e9;const ll INF = 1e18;struct edge{ int v,w;};signed main(){ ios::sync_with_stdio(false); cin.tie(nullptr); int n,m,s; ...