思路: 区间dp。添加和删除本质相同。 实现: ...
分类:
其他好文 时间:
2017-03-18 22:57:40
阅读次数:
198
#include<stdio.h>#include<stdlib.h>int main(){int i,a[9]={1,2,3,4,7,5,8,9,0},//定义一个数组*p=a;p=a;for(i=0;i<10;i++,p++)//以i=0开始循环,直到i<10printf("a[%d]=%d", ...
分类:
其他好文 时间:
2017-03-18 22:42:46
阅读次数:
101
嵌入式软件设计第8次实验报告 学号:140201126 姓名:杨鹏飞 组别:第二组 实验地点:D19 一、实验目的: 1.熟悉WWW技术中的CGI(公共网关接口)技术。 2.学会使用CGI技术编写C语言代码驱动嵌入式开发板的LED灯 和蜂鸣器。 二、实验内容: 1.编写代码完成Web服务器端蜂鸣器的 ...
分类:
其他好文 时间:
2017-03-18 20:48:53
阅读次数:
191
#include<stdio.h> void swop(int *x, int *y) { int t; t = *x; *x = *y; *y = t; } int main(void) { int a = 3; int b = 4; int *x = &a; int *y = &b; swop( ...
分类:
编程语言 时间:
2017-03-18 20:34:39
阅读次数:
156
题目描述 N位同学站成一排,音乐老师要请其中的(N-K)位同学出列,使得剩下的K位同学排成合唱队形。 合唱队形是指这样的一种队形:设K位同学从左到右依次编号为1,2…,K,他们的身高分别为T1,T2,…,TK, 则他们的身高满足T1<...<Ti>Ti+1>…>TK(1<=i<=K)。 你的任务是, ...
分类:
其他好文 时间:
2017-03-18 18:21:03
阅读次数:
178
目前自己测试的表达式都没有出过问题 思路是这样,先将后缀表达式的计算顺序搞出来。。当完全缩出来一个数的时候,如果后面还有要计算的,我们就把它放到后缀表达式的后面 先算后面的。。不断迭代。。 ...
分类:
其他好文 时间:
2017-03-18 18:00:16
阅读次数:
211
#include #include #include using namespace std; char s[100007]; typedef long long ll; ll numSt[100007],opSt[100007],ans[63]; int main(){ while(~scanf(... ...
分类:
其他好文 时间:
2017-03-18 17:57:21
阅读次数:
201
#include<stdio.h>#include<conio.h>main(){int a[4]={1,3,3,4},*p; p=a;for(int i=0;i<4;i++){printf("%d\n",*p);*p++;}getch();} ...
分类:
编程语言 时间:
2017-03-18 17:35:19
阅读次数:
128
这题的时间复杂度真玄学。。。 O(m*n^2)。1e8也能过啊。。。 首先题目保证m<=1e6. 这启发我们枚举或者二分答案? 但是答案不满足单调性,考虑从小到大枚举m。 对于每一个m,枚举两个野人在有生之年能否住在一起。可以推出一个同余方程,用扩欧可以求出最小整数解x,或者没有解。 如果x<=li ...
分类:
其他好文 时间:
2017-03-17 21:05:15
阅读次数:
164
//100分 #include<iostream>using namespace std; typedef struct Point{ int x1,x2,y1,y2; int order; int no;};typedef struct XY{ int x,y;};int main(){ int ...
分类:
其他好文 时间:
2017-03-17 21:04:41
阅读次数:
135