QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#416277#8723. 乘二mifafaWA 166ms6384kbC++141.0kb2024-05-21 18:44:152024-05-21 18:44:15

Judging History

你现在查看的是最新测评结果

  • [2024-05-21 18:44:15]
  • 评测
  • 测评结果:WA
  • 用时:166ms
  • 内存:6384kb
  • [2024-05-21 18:44:15]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;
#define int long long
const int inf = 0x3f3f3f3f3f3f3f3f;

const int N = 2e5 + 10;
const int mod = 1e9 + 7;
int a[N];

int powmod(int a, int b) {
  int res = 1;
  for (; b; b >>= 1) {
    if (b & 1) res = res * a % mod;
    a = a * a % mod;
  }
  return res;
}
 
void solve() {
  int n, k;
  cin >> n >> k;
  priority_queue<int> q;
  for (int i = 1; i <= n; i++) {
    cin >> a[i];
    q.push(-a[i]);
  }

  int Limit = 1ll << 32;
  while (k && -q.top() < Limit) {
    auto t = q.top();
    q.pop();
    q.push(t * 2);
    k--;
  }
  for (int i = 1; i <= n; i++) {
    a[i] = -q.top();
    a[i] %= mod;
    q.pop();
  }
  int ans = 0;
  for (int i = 1; i <= n; i++) {
    if (k) a[i] = powmod(2, n / k) * a[i] % mod * (i <= n % k ? 2 : 1) % mod;
    ans = (ans + a[i] % mod);
    assert(ans >= 0);
  }
  cout << ans << '\n';
}

signed main() {
  ios::sync_with_stdio(0);
  cin.tie(0);
  int _ = 1;
  // cin >> _;
  while (_--) {
    solve();
  }
  return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 1ms
memory: 3696kb

input:

3 3
7 2 1

output:

15

result:

ok 1 number(s): "15"

Test #2:

score: -100
Wrong Answer
time: 166ms
memory: 6384kb

input:

200000 1605067
366760624 67854 93901 693975 27016 1046 10808 6533158 54778 500941023 77236442 32173 10431454 2 9726 1553148 89282 411182309 494073 131299543 249904771 7906930 353 9909 3632698 29156 1917186 303 737 1189004 22 1983 263 711 4106258 2070 36704 12524642 5192 123 2061 22887 66 380 1 10153...

output:

10953707110844

result:

wrong answer 1st numbers differ - expected: '707034173', found: '10953707110844'