Q1143316492
Q1143316492
全部文章
未归档
归档
标签
去牛客网
登录
/
注册
Q1143316492的博客
全部文章
/ 未归档
(共115篇)
Tarjan笔记1
Tarjan 2822 爱在心中 ** 时间限制: 1 s ** 空间限制: 128000 KB ** 题目等级 : 钻石 Diamond 题解 题目描述 Description“每个人都拥有一个梦,即使彼此不相同,能够与你分享,无论失败成功都会感动。爱因为在心中,平凡而不平庸,世界就像...
2017-12-02
0
390
最短路的三种写法模板
MPI Maelstrom最短路的三种写法 MPI Maelstrom TimeLimit:1000MS MemoryLimit:10000K 64-bit integer IO format:%lld 已解决 | 点击收藏 Problem Description BIT...
2017-11-22
0
381
跟着大佬重新入门DP
数列两段的最大字段和 POJ2479 Maximum sum Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 4123...
2017-08-06
0
598
笔记
python 注释 /#单行注释 ‘’ 多汗注释 变量 没有声明变量的过程,个人理解,把自动识别所有类型 输入输出 print()和input() 数学运算 + - * / / 浮点除法 // 整除 ** 幂运算 % 取模 > < >= <...
编程语言相关
2017-08-05
0
1402
markdowm写博客测试
markdowm测试文档 #include <bits/stdc++.h> using namespace std; int main() { printf("Hello World\n"); return 0; }
2017-08-01
0
473
数论笔记
一,同余 二,欧几里得 ll gcd(ll a,ll b) { if(a<b){ swap(a,b); } return b==0?a:gcd(b,a%b); } int lcm(int a,int b) { ...
2017-07-20
0
460
哈哈哈
#include <windows.h> LRESULT CALLBACK WndProc (HWND, UINT, WPARAM, LPARAM) ; int WINAPI WinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance,...
2017-06-06
0
388
闭关修炼屯题中,期末考完A
FJUTOJ 1279 #include <cstdio> #include <iostream> #include <algorithm> #include <cstring> #include <queue> ...
2017-06-04
0
368
acm几何
fzu 2231,N个点求构成的平行四边行个数。 题意简重点在优化上 1 #include <cstdio> 2 #include <iostream> 3 #include <cstring> 4 #include <alg...
acm
2017-06-04
0
450
分块
B站视屏的代码加上我的注释。 ask函数处理信息,如果x,y在同一块中,暴力循环该区间,最多跟号N个元素 否则,3个for查询上面三个部分,1,3的循环暴力查找,第二个for根据我们预处理的每块最大值查询 莫队 http://codeforces.com/prob...
2017-05-17
0
386
首页
上一页
3
4
5
6
7
8
9
10
11
12
下一页
末页