YZBPXX
YZBPXX
全部文章
分类
acm入门练习(1)
c#(1)
c++,c实用小函数,操作(20)
hash/bkdr hash字符串(2)
动态规划—树形dp(1)
动态规划—背包九讲(7)
单调栈(1)
图论—bfs(2)
图论—dfs(6)
图论—最小生成树(1)
图论—最短单源路径(5)
字符串—ac自动机(1)
字符串—扩展KMP/KMP(4)
字符串—马拉车(1)
带权并查集(2)
拓扑排序(2)
数据库学习(6)
数据结构—RMQ(5)
数据结构—字典树(1)
数据结构--红黑二叉树(1)
数论(8)
未归档(2)
矩阵快速幂(1)
算法分析(3)
网络流(1)
集训题(2)
题解(33)
归档
标签
去牛客网
登录
/
注册
ACM
当你还在犹豫不决的时候,别人已经开始了
全部文章
(共110篇)
Dijk入门(杭电2544题)
#include<bits/stdc++.h> using namespace std; //std::ios::sync_with_stdio(0); //std::cin.tie(0); const int INF=0x3f3f3f3f; int main(){ int n,...
模版
2019-05-09
0
703
牛客 19-5-3 QAQ
#include<iostream> #include<cstring> using namespace std; typedef long long LL; int main() { char a[6000]; scanf("%s",a)...
2019-05-04
0
481
BFS入门
#include<iostream> #include<cstring> #include<queue> using namespace std; #define MAX 100 #define INF 0x3f3f3f3f typedef pair<int...
模版
2019-04-28
0
501
DFS练习
#include<cstdio> #include<iostream> using namespace std; char maze[9][9]; int n,m,t,flag; int starti,startj,endi,endj; int dir[4][2]={{0,1...
2019-04-22
0
624
判断字符串中最长的重复出现的子串
#include<bits/stdc++.h> using namespace std; int main(){ string s; while(cin >> s){ int ls = s.length(); int max1 = 0; for(int i = 0 ; i &...
模拟
2019-04-17
0
655
输出格式
把一个字符三角形掏空,就能节省材料成本,减轻重量,但关键是为了追求另一种视觉效果。在设计的过程中,需要给出各种花纹的材料和大小尺寸的三角形样板,通过电脑临时做出来,以便看看效果。 Input 每行包含一个字符和一个整数n(0<n<41),不同的字符表示不同的花纹,整数n表示等...
2019-04-07
0
502
杭电1003题
题目描述:找出最大子串和 ac代码: #include<iostream> #include<cstdio> using namespace std; int main(){ // freopen("1.txt","...
思维
2019-03-25
0
555
背包问题(递归的使用)
#include<stdio.h> #include<iostream> #include<algorithm> using namespace std; int knap(int W[],int T,int n){ if(T==0) return 1; if(T...
2019-03-16
0
403
oj1089-1096总结(输入输出练习)
//无限输出类 #include<stdio.h> int main(void) { int a,b; while((scanf("%d %d",&a,&b))!=EOF) //留意这种形式 printf("%d\n&quo...
2019-01-31
0
486
oj 1002题 (大数题)
#include <stdio.h> #include <string.h> int main(void) { int q,j,h,k,l; int d; char s1[1001],s2[1001];//题目要求位数不大于1000 scanf("%d"...
2019-01-29
0
643
首页
上一页
2
3
4
5
6
7
8
9
10
11
下一页
末页