题目 74 [NOIP 2006]明明的随机数
2015-12-04 20:11:54
|
|
题目 74 [NOIP 2006]明明的随机数
2015-10-09 18:07:14
|
|
题目 74 [NOIP 2006]明明的随机数
2015-10-09 17:36:33
|
|
大神求教 0分T——T
#include<fstream> #include<algorithm> #include<cstring> using namespace std; ifstream fin("random.in"); ofstream fout("random.out"); const int MAXDATA=100; int arr[MAXDATA]; bool vsd[1000]; int len=0; bool cmp(int a,int b) { if(a<b)return true; else return false; } int main() { fin>>len; memset(vsd,0,sizeof(vsd)); for(int i=0,p=0;i<len;i++) { int t; fin>>t; if(!vsd[t]) { vsd[t]=1; arr[p]=t; p++; }else len--; } sort(arr,arr+len,cmp); fout<<len<<endl; for(int i=0;i<len;i++) { if(arr[i]!=0) fout<<arr[i]<<' '; } fout<<endl; return 0; }
题目 74 [NOIP 2006]明明的随机数
2015-10-09 17:36:06
|
|
惨,写错了N次!自信心完全没了。。。
题目 74 [NOIP 2006]明明的随机数
2015-08-12 22:00:59
|
|
|
|
交换变量a^=b^=a^=b在不同的编译器中运行结果不同,慎用!
可参见http://blog.csdn.net/guoxuequan/article/details/8039836 |
|
这题用Treap真是醉了。。
|
|
var
a:array[1..1000] of integer; i,j,n,c,d:integer; begin assign(input,'random.in'); reset(input);assign(output,'random.out'); rewrite(output); readln(c); for i:=1 to c do begin read(n); for j:=1 to 1000 do if n=j then begin if a[j]=0 then begin a[j]:=a[j]+1; d:=d+1; end; break; end; end; writeln(d); for i:=1 to 1000 do if a[i]>0 then write(i,' '); close(input); close(output); end. 欧耶!!
题目 74 [NOIP 2006]明明的随机数
2015-03-25 13:35:58
|
|
#include<cstdio>
#include<set> using namespace std; int main() { freopen("random.in","r",stdin); freopen("random.out","w",stdout); set<int,less<int> >a; set<int,less<int> >::iterator k; int n,m,s=0; scanf("%d",&n); for(int i=1;i<=n;i++) { scanf("%d",&m); if(a.insert(m).second==1) s++; } printf("%d\n",s); for(k=a.begin();k!=a.end();k++) printf("%d ",*k); return 0; } set的过法,时间0.003s,因为代码很简单,所以粘上来供参考下
题目 74 [NOIP 2006]明明的随机数
2014-08-25 16:19:00
|
|
桶排序好不好
|
|
so easy!
|
|
不要鄙视我
|
|
|
|
TREAP 居然比BST 慢
题目 74 [NOIP 2006]明明的随机数
2014-04-25 17:47:46
|
|
BST秒过
题目 74 [NOIP 2006]明明的随机数
2014-04-25 07:43:21
|
|
冒泡排序也可以直接全0s通过,看来题目数据比POJ正常多了、、
|
|
计数排序
题目 74 [NOIP 2006]明明的随机数
2014-03-16 17:10:29
|
|
题目 74 [NOIP 2006]明明的随机数
2014-03-04 19:31:17
|
|
c++er是不是因为标准库?
|