上一页 1 ··· 31 32 33 34 35 36 37 38 39 ··· 45 下一页
摘要: source $VIMRUNTIME/vimrc_example.vim source $VIMRUNTIME/mswin.vim behave mswin inoremap F( ()i inoremap f[ []i inoremap F{ {}O inoremap ii set softtabstop=4 set shiftwidth=4 set autoindent set cin... 阅读全文
posted @ 2017-09-14 16:22 wqtnb_tql_qwq_%%% 阅读(189) 评论(0) 推荐(0) 编辑
摘要: #include<bits/stdc++.h> using namespace std; string a,b; int n; void dfs(int l,int r){ int now=0; for(int i=n-1;i>=0;i--)if(!now) for(int j=l;j<=r;j++ 阅读全文
posted @ 2017-09-10 18:54 wqtnb_tql_qwq_%%% 阅读(112) 评论(0) 推荐(0) 编辑
摘要: #include<bits/stdc++.h> using namespace std; int n; char a[100000]; void make(){ for(int i=n-1;i;i--){ if(a[i*2]=='B' && a[i*2+1]=='B')a[i]='B'; else 阅读全文
posted @ 2017-09-10 13:16 wqtnb_tql_qwq_%%% 阅读(152) 评论(0) 推荐(0) 编辑
摘要: #include<bits/stdc++.h> using namespace std; #define MAXM 500010 #define MAXN 5010 #define INF 100000000 struct Edge{int from,to,cap,flow,cost;}; int 阅读全文
posted @ 2017-09-09 18:44 wqtnb_tql_qwq_%%% 阅读(142) 评论(0) 推荐(0) 编辑
摘要: #include<bits/stdc++.h> using namespace std; #define MAXN 100010 #define INF 100000000 struct Edge{int from,to,cap,flow;}; vector<Edge> edges; vector< 阅读全文
posted @ 2017-09-09 13:39 wqtnb_tql_qwq_%%% 阅读(147) 评论(0) 推荐(0) 编辑
摘要: #include<bits/stdc++.h> using namespace std; struct point{int x,y;}ans[100000]; int a[20][20],n,m,sx,sy,tx,ty,cnt=1; int dx[]={0,-1,0,1}; int dy[]={-1 阅读全文
posted @ 2017-09-08 13:18 wqtnb_tql_qwq_%%% 阅读(125) 评论(0) 推荐(0) 编辑
摘要: #include<cstdio> #include<cstring> #include<iostream> #define limit 15 using namespace std; int T,ans=20,flag; int xx[9]={0,-2,-2,-1,-1,1,1,2,2}; int 阅读全文
posted @ 2017-08-24 13:27 wqtnb_tql_qwq_%%% 阅读(117) 评论(0) 推荐(0) 编辑
摘要: //题目真有意思 嘿嘿嘿 阅读全文
posted @ 2017-08-02 11:16 wqtnb_tql_qwq_%%% 阅读(88) 评论(0) 推荐(0) 编辑
摘要: #include<bits/stdc++.h> using namespace std; int n,a[1010],t,b[1010]; string m; void add(){ for(int i=1;i<=a[0];i++)b[a[0]-i+1]=a[i]; for(int i=1;i<=a 阅读全文
posted @ 2017-07-31 14:40 wqtnb_tql_qwq_%%% 阅读(145) 评论(0) 推荐(0) 编辑
摘要: #include<bits/stdc++.h>using namespace std;typedef long long LL; void exgcd(int a,int b,LL &x,LL &y){ if(b==0){x=1, y=0; return;} LL tx,ty; exgcd(b,a% 阅读全文
posted @ 2017-07-20 19:50 wqtnb_tql_qwq_%%% 阅读(179) 评论(0) 推荐(0) 编辑
上一页 1 ··· 31 32 33 34 35 36 37 38 39 ··· 45 下一页