poj2092
摘要:1 /*水题,算每个号码处出现的次数*/ 2 #include 3 #include 4 #include 5 using namespace std; 6 const int maxn=10000+10; 7 struct point 8 { 9 int num,index;10 }p[maxn];11 int cmp(const point a,const point b)12 {13 if(a.num==b.num) return a.indexb.num;15 }16 int hash[maxn];17 int main()18 {19 int i,j,n,m...
阅读全文
posted @ 2013-07-29 20:25
浙公网安备 33010602011771号