摘要: A:逆序数 写过一篇原理,这里不想多说。 传送门 代码: 1 #include<bits/stdc++.h> 2 using namespace std; 3 #define LL long long 4 #define ULL unsigned LL 5 #define fi first 6 #d 阅读全文
posted @ 2018-02-25 22:06 Schenker 阅读(351) 评论(0) 推荐(0) 编辑
摘要: Two Sets 题意:就是将一对数放进setA, setB中, 如果放进setA的话要求满足 x与a-x都在这个集合里面, 如果放进setB中要求满足x与b-x都在这个集合中。 题解:我们将能放进B的元素优先放在B中,如果能放进B就直接将2个元素放进B中。 然后如果能放进A中就放进A中, 如果在放 阅读全文
posted @ 2018-02-25 21:45 Schenker 阅读(264) 评论(0) 推荐(0) 编辑