QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#720485#5137. TowerLuckyblockTL 1546ms3836kbC++202.0kb2024-11-07 13:00:282024-11-07 13:00:29

Judging History

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

  • [2024-11-07 13:00:29]
  • 评测
  • 测评结果:TL
  • 用时:1546ms
  • 内存:3836kb
  • [2024-11-07 13:00:28]
  • 提交

answer

//
/*
By:Luckyblock
*/
#include <bits/stdc++.h>
#define LL long long
#define pr std::pair
#define mp std::make_pair
const int kN = 510;
const LL kInf = 1e18;
//=============================================================
int n, m, a[kN];
bool vis[kN];
struct Data {
  int id, v, c;
};
LL ans;
//=============================================================
void solve(int v_) {
  std::vector<Data> vec;
  for (int i = 1; i <= n; ++ i) {
    if (a[i] < v_) {
      vec.push_back((Data) {i, v_, v_ - a[i]});
      
    } else if (a[i] < 2 * v_) {
      vec.push_back((Data) {i, a[i], 0});
      vec.push_back((Data) {i, v_, 1 + v_ - a[i] / 2});
  
    } else {
      int b = a[i], c = 0;
      while (b >= 4 * v_) b /= 2, ++ c;
      vec.push_back((Data) {i, 2 * v_ - 1, c + b - 2 * v_ + 1});
      while (b >= 2 * v_) b /= 2, ++ c;
      vec.push_back((Data) {i, b, c});
      while (b > v_) b /= 2, ++ c;
      vec.push_back((Data) {i, v_, c + v_ - b});
    }
  }
  
  for (auto [id, v, c]: vec) {
    LL sum = c;
    std::vector<pr <int, int> > temp;
    for (auto [id1, v1, c1]: vec) {
      if (id1 == id) continue;
      temp.push_back(mp(c1 + abs(v - v1), id1));
      vis[id1] = 0;
    }
    std::sort(temp.begin(), temp.end());
    int cnt = 0;
    for (int i = 0, sz = temp.size(); i < sz && cnt < n - m - 1; ++ i) {
      if (vis[temp[i].second]) continue;
      vis[temp[i].second] = 1;
      sum += 1ll * temp[i].first;
      ++ cnt;
    }
    if (cnt == n - m - 1) ans = std::min(ans, sum);
  }
}
//=============================================================
int main() {
  // freopen("1.txt", "r", stdin);
  std::ios::sync_with_stdio(0), std::cin.tie(0);
  int T; std::cin >> T;
  while (T --) {
    std::cin >> n >> m;
    for (int i = 1; i <= n; ++ i) std::cin >> a[i];
    
    ans = kInf;
    for (int i = 0; i < 30; ++ i) solve((1ll << i));
    std::cout << ans << '\n';
  }
  return 0;
}
/*
1
2 0
2 6

*/

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 0ms
memory: 3652kb

input:

3
2 0
2 6
5 0
1 2 3 4 5
5 3
1 2 3 4 5

output:

2
4
1

result:

ok 3 number(s): "2 4 1"

Test #2:

score: 0
Accepted
time: 1546ms
memory: 3556kb

input:

10
272 118
11 14 49 94 71 62 46 45 74 22 15 36 7 37 27 35 96 85 75 78 76 64 23 59 17 35 71 28 96 82 5 66 2 48 57 31 88 10 61 73 79 23 19 52 39 76 48 98 5 39 48 51 90 90 60 27 47 24 24 56 48 27 39 21 38 18 20 9 62 83 47 15 51 22 73 74 7 80 64 60 86 74 59 7 84 38 99 31 42 60 52 41 63 88 59 90 77 40 68...

output:

454
3
436
108
570
636
994
227
656
50

result:

ok 10 numbers

Test #3:

score: 0
Accepted
time: 1403ms
memory: 3836kb

input:

10
133 89
20 70 6 45 4 72 38 7 18 1 82 39 69 85 5 36 1 62 30 47 68 55 7 41 7 42 7 61 11 82 2 80 80 93 29 30 42 58 73 26 99 67 60 94 61 46 47 54 44 50 35 88 61 17 23 97 90 28 16 47 75 35 28 14 42 63 26 40 95 58 26 25 26 83 93 56 17 27 7 90 91 28 53 49 47 84 55 52 11 34 14 74 40 65 84 32 99 46 1 21 31...

output:

88
1361
128
246
29
83
3
677
96
382

result:

ok 10 numbers

Test #4:

score: -100
Time Limit Exceeded

input:

10
500 50
67 93 11 58 54 40 37 3 92 96 91 20 46 5 21 43 3 2 7 47 27 81 14 53 86 21 46 51 86 22 42 14 52 38 42 25 34 29 84 42 43 96 11 100 27 60 48 15 13 69 58 16 14 58 17 94 8 71 39 38 25 37 100 58 99 56 65 84 94 63 25 34 13 73 83 83 69 60 70 15 15 90 7 11 88 69 13 26 99 28 16 97 32 40 76 62 41 5 9 ...

output:


result: