lgz0921
lgz0921
全部文章
分类
"/" 和 "//" 的区别(1)
Dijkstra(1)
java(2)
python(1)
spfa(1)
三分(1)
二分图(1)
全排列(2)
分组背包(1)
区间dp(2)
单调栈(1)
博弈论(1)
多重背包(1)
子字符串(1)
对抗搜索(1)
小顶堆(1)
并查集(1)
引号(1)
思维(3)
思维+取模(1)
思维题(1)
扩展欧几里得(1)
数据结构(1)
数论(2)
最大流(1)
最小堆判断(1)
最小生成树是否有重复(1)
最短路(1)
最长公共子序列(1)
未归档(80)
树形dp(2)
树状数组(2)
树的直径(1)
模拟(1)
模板(2)
欧拉函数(2)
母函数(1)
求逆元(1)
状压dp(1)
矩阵快速幂(1)
第一大全1矩阵(1)
简单二维尺取(1)
组合数(1)
背包模板(1)
菲波那切数列(1)
逆元(1)
递归(1)
归档
标签
去牛客网
登录
/
注册
lgz0921
好好学习,天天向上
全部文章
(共136篇)
POJ——3494 Largest Submatrix of All 1’s(思维题,求第一大全1矩阵)
Given a m-by-n (0,1)-matrix, of all its submatrices of all 1’s which is the largest? By largest we mean that the submatrix has the most elements. Inp...
第一大全1矩阵
思维
2019-07-21
0
668
2019牛客暑期多校训练营(第二场)H——Second Large Rectangle(思维题,求第二大全1矩阵)
链接:https://ac.nowcoder.com/acm/contest/882/H 来源:牛客网 时间限制:C/C++ 1秒,其他语言2秒 空间限制:C/C++ 262144K,其他语言524288K 64bit IO Format: %lld 题目描述 Given a N×MN×M...
思维
第二大全1矩阵
2019-07-21
2
1385
2019牛客暑期多校训练营(第二场)A——Eddy Walker(逆元+找规律)
链接:https://ac.nowcoder.com/acm/contest/882/A 来源:牛客网 时间限制:C/C++ 1秒,其他语言2秒 空间限制:C/C++ 262144K,其他语言524288K 64bit IO Format: %lld 题目描述 Eddy likes to ...
逆元
找规律
2019-07-21
1
1209
POJ——2478 Farey Sequence(欧拉函数)
The Farey Sequence Fn for any integer n with n >= 2 is the set of irreducible rational numbers a/b with 0 < a < b <= n and gcd(a,b) = 1 ar...
欧拉函数
数论
2019-07-19
0
555
LightOJ ——1282 (简单数论+技巧)
You are given two integers: n and k, your task is to find the most significant three digits, and least significant three digits of nk. Input Input s...
数论
技巧
2019-07-19
0
777
python 多组输入
from math import * while True: try: n=int(input()) print(5201314+n) #except EOFError:break except:break # except 写哪儿个都行,甚...
python
多组输入
2019-07-17
0
719
吉首大学2019年程序设计竞赛 E——多喝嘤料
链接:https://ac.nowcoder.com/acm/contest/992/E 来源:牛客网 时间限制:C/C++ 1秒,其他语言2秒 空间限制:C/C++ 32768K,其他语言65536K 64bit IO Format: %lld 题目描述 卖嘤料~~~卖嘤料~~~ 3个...
思维题
python
2019-07-17
0
753
python中 "/" 和 "//" 的区别
print(1/2) #0.5 print(1//2) #0
"/" 和 "//" 的区别
2019-07-17
0
657
python子字符串
#子字符串 #索引运算符[], 从0开始索引 #切片运算符[:], [a:b]是指从第a下标开始到第b-1下标。同样第一位的下标为0 s1="lgzcxl" s2=s1[0] print(s2) #l s3=s1[1] print(s3) #g s4=s1[:5]...
子字符串
2019-07-16
0
564
python三种引号的使用方法
#单引号(单引号里面可以使用双引号) s1='lgz' print(s1) #lgz s2='It is a "dog"!' print(s2) #It is a "dog"! #双引号(双引号里面不可以使用双引号,双引号里面可以使用单引号) s1=&quo...
引号
2019-07-16
0
757
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页