Dev—c++
轻言-NorthObserver
大大大大大大大蒟蒻
展开
-
例2.11数字加密
include include include include using namespace std; int main() { int a,b; cin>>a>>b; stringstream t; string ans; t<原创 2018-08-09 09:08:39 · 153 阅读 · 0 评论 -
快速幂
#include<bits/stdc++.h>using namespace std;int b,p,k;int cp(int p){ int temp; if(p==0) return 1; temp=cp(p/2)%k; temp=(temp*temp)%k; if(p%2==1) temp=(te...原创 2019-01-10 21:17:32 · 127 阅读 · 0 评论 -
P1162 填涂颜色
#include <bits/stdc++.h>#include <cstdio>using namespace std;int n;int x=0,y=0;int a[35][35],b[35][35];int xx[4]={1,-1,0,0};int yy[4]={0,0,1,-1};struct T{ int x,y;} c[1001];...原创 2018-12-08 20:52:34 · 135 阅读 · 0 评论 -
P1460 健康的荷斯坦奶牛 Healthy Holsteins
#include <bits/stdc++.h>#include <cstdio>using namespace std;struct Node{ int ans[26];} a[26],b;int c[26],d[26];int V,v[26],G,L,minl=100;void dfs(int x,int l){ if(l>=minl) {...原创 2018-12-08 20:47:24 · 350 阅读 · 0 评论 -
P2089 烤鸡
#include <bits/stdc++.h>#include <cstdio>int ans[9000][10],m=0,num=-1,n,b[10]={-999};using namespace std; void dfs(int k){ int i; if(k==9) { int d=n-m; if(...原创 2018-12-08 13:02:55 · 179 阅读 · 0 评论 -
P4136 谁能赢呢?
#include <bits/stdc++.h>#include <cstdio>using namespace std;int main(){ int n; while(cin>>n) { if(n==0) { return 0; } if...原创 2018-12-08 13:02:16 · 208 阅读 · 0 评论 -
something about 高精
·First 高精加#include <bits/stdc++.h>#include <cstdio>using namespace std;int a[100000];int b[100000];void gaojing(int a[],int b[]){ int k=0; if(a[0]>=b[0]) { k=a[0]; } else...原创 2018-12-08 12:25:47 · 107 阅读 · 0 评论 -
一段堆代码
void put (int d){int now ,next;l++;heap[l]=d;now=l;while(now>1){next=now>>1;if(heap[now]>=heap[next]) break;swap(heap[now],heap[next]);now=next;} }int get(){int now,next,res;...原创 2018-10-17 20:56:02 · 261 阅读 · 1 评论 -
例3.1 窗口重叠
include using namespace std; struct WD { int l;//代left int r;//代right int t;//代top int b;//代bottom }; WD a,b,t; int main() { cin>>a.l>>a.r>>a.t&g...原创 2018-08-11 09:40:33 · 1730 阅读 · 0 评论 -
结构体—struct
结构体的基本结构 struct ST { char name; //姓名 int num; //学号 int age; //年龄 char group; //所在学习小组 float score; //成绩 }; add:注意大括号后面的分号;不能少,这是一条完整的语句。 结构体也是一种数据类型,它由程序员自己定义,可以包含多个...原创 2018-08-11 09:34:44 · 98 阅读 · 0 评论 -
CCF 例3.2 成绩统计
include原创 2018-08-11 09:07:25 · 175 阅读 · 0 评论 -
STL 算法
1.std::reverse(),顾名思义,用于反转序列。需要提供首尾迭代器作为参数。 2.std::string::erase(),传入两个迭代器 l,r,清除[l,r)范围内的字符。 3.std::string::substr(),用于提取子字符串,用法与前者类似。 4.std::string::find(),用来查找字串在母串中第一次出现的位置。...原创 2018-08-11 08:12:58 · 134 阅读 · 0 评论 -
你的飞碟在这———洛谷
include include using namespace std; string a , b ; int ans = 1 , num = 1 ; main() { cin >> a >> b ; for( int i = 0 ; i < a.length() ; i ++ ) { ans *...原创 2018-08-10 10:04:46 · 400 阅读 · 0 评论 -
浅谈----次 小 生 成 树
前置技能:知道怎么搞出最小生成树(即K算法和P算法)这里给出一些定义:定义次小生成树为所有生成树中第二小的(可能不止一个)有用边为原最小生成树的任意边无用边为不在原最小生成树的任意边所以推理得出以下结论1. 至少有一条边在次小生成树中而不在最小生成树中2. 次小生成树肯定是某条无用边的对应最小生成树首先**答案肯定不是某条有用边的对应最小生成树,由结论1我们可以得到某条在...原创 2019-06-14 21:39:50 · 187 阅读 · 0 评论