Loading

摘要: 复杂度O(NlogN) 求逆序对: #include<iostream> #include<cstdio> #include<string> #include<algorithm> #include<queue> #include<deque> #include<set> #include<map> 阅读全文
posted @ 2020-02-12 18:08 MQFLLY 阅读(97) 评论(0) 推荐(0) 编辑
摘要: inline int read() { char ch, c=' '; int res; while (ch = getchar(), ch < '0' || ch>'9') c = ch; res = ch - 48; while (ch = getchar(), ch >= '0' && ch 阅读全文
posted @ 2020-02-12 14:23 MQFLLY 阅读(140) 评论(0) 推荐(0) 编辑