摘要: 先来朴素的排序解法: 1 #include 2 #include 3 using namespace std; 4 5 struct D { 6 int pos, val; 7 } sorted[100000]; 8 9 int cmp(const struct D &a, cons... 阅读全文
posted @ 2014-07-24 11:10 e0e1e 阅读(144) 评论(0) 推荐(0) 编辑