首页 > 代码库 > codeforces round #415 div2
codeforces round #415 div2
由于下午硬钢树套树和大力颓废就没补完
C:我傻逼比赛时没做出来。。。就是排个序然后算贡献
#include<bits/stdc++.h> using namespace std; typedef long long ll; const int N = 300010, mod = 1000000007; int n; ll ans, t = 1; ll a[N], bin[N]; bool cp(int i, int j) { return i < j; } int main() { scanf("%d", &n); bin[0] = 1; for(int i = 1; i <= n; ++i) { scanf("%lld", &a[i]); t = t * 2ll % mod; bin[i] = (bin[i - 1] + t) % mod; } sort(a + 1, a + n + 1, cp); for(int i = 2; i <= n; ++i) ans = (ans + a[i] % mod * bin[i - 2] % mod) % mod; for(int i = n - 1; i; --i) ans = ((ans - a[i] % mod * bin[n - i - 1] % mod) % mod + mod) % mod; printf("%lld\n", ans); return 0; }
codeforces round #415 div2
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。