摘要: 各种序。。。。。。。。。。。#include#include#includeusing namespace std;void tree(char *s1,char *s2){ if(s1[0]=='\0') return; else if(s1[1]=='\0') { printf("%c",s1[... 阅读全文
posted @ 2011-10-30 15:09 DChipNau 阅读(98) 评论(0) 推荐(0) 编辑
摘要: 一开始超时,怎么改都超时,后来果断把stl换成纯数组,竟然AC了,莫非stl的操作很费时间吗,不解:之前的超时stl版:#include#include#includeusing namespace std;int mark[10005];int main(){ int n; while(scan... 阅读全文
posted @ 2011-10-30 10:36 DChipNau 阅读(141) 评论(0) 推荐(0) 编辑