摘要: 1.排序2.前缀和#include #include #include using namespace std;const int MAXN = 1e3 + 10;struct que{ int num; int... 阅读全文
posted @ 2018-07-10 09:43 张浦 阅读(83) 评论(0) 推荐(0) 编辑
摘要: 很巧妙的思维题用数字表示直接全加成零就得了 有点像减法的借位#include using namespace std;int arr[120] = {0};int main(){ int N, sum = 0, ... 阅读全文
posted @ 2018-07-10 09:20 张浦 阅读(56) 评论(0) 推荐(0) 编辑