2012年8月6日

Codeforces--Little Elephant and Sorting

摘要: http://codeforces.com/problemset/problem/205/B例如2 7 3 5 10只需要7-3的步骤View Code 1 #include<iostream> 2 3 using namespace std; 4 5 int const ic_max = 100001; 6 7 long long int iGetMinMoveNum(int iN,int iArr[]); 8 9 int main()10 {11 int iNum;12 long long int iAns;13 int iArr[ic_max];14 1... 阅读全文

posted @ 2012-08-06 15:34 zimulala 阅读(219) 评论(0) 推荐(0)

导航