QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#324866#6525. New HousesLainWA 100ms3572kbC++231.4kb2024-02-11 00:58:402024-02-11 00:58:41

Judging History

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

  • [2024-02-11 00:58:41]
  • 评测
  • 测评结果:WA
  • 用时:100ms
  • 内存:3572kb
  • [2024-02-11 00:58:40]
  • 提交

answer

#include "bits/stdc++.h"
using namespace std;

int main() {
  ios_base::sync_with_stdio(false);
  cin.tie(NULL);
  int tt;
  cin >> tt;
  while(tt--) {
    int n, m;
    cin >> n >> m;
    int64_t ans = 0;
    // a is TOGETHER
    // b is SINGLE
    vector<int> a(n), b(n);
    vector<int> A, B;
    for (int i =0; i < n; i++) {
      cin >> a[i] >> b[i];
      if (a[i] >= b[i]) {
        B.push_back(i);
      } else {
        A.push_back(i);
      }
    }
    sort(A.begin(), A.end(), [&](int x, int y){
      return b[x] > b[y];
    });
    int s = min(m - n, (int)A.size());
    if (s + 1 == A.size() && B.size() == 0) {
      // Everyone is separate.
      for (int i =0; i < n; i++) {
        ans += b[i];
      }
      cout << ans << '\n';
      continue;
    }
    if (s == A.size() && B.size() == 1) {
      if (A.size() == 0) {
        // all alone
        cout << b[0] << '\n';
        continue;
      }

      // decide which to choose
      int64_t X = 0, Y =0;
      for (int i =0; i < n; i++) X += b[i];
      for (int i = 0; i + 1 < A.size(); i++) Y += b[A[i]];
      Y += a[A.back()] + a[B[0]];
      cout << max(X, Y) << '\n';
      continue;
    }
    
    // Everyone gets what they want.
    for (int i =0; i < min(s, (int)A.size()); i++) {
      ans += b[A[i]];
    }
    for (int i = s; i < A.size(); i++) ans += a[A[i]];
    for (auto&x : B) ans += a[x];
    cout << ans << '\n';
  }
}


详细

Test #1:

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

input:

3
4 5
1 100
100 1
100 1
100 1
2 2
1 10
1 10
2 3
100 50
1 1000

output:

400
2
1050

result:

ok 3 number(s): "400 2 1050"

Test #2:

score: -100
Wrong Answer
time: 100ms
memory: 3536kb

input:

100000
6 11
191141536 365120521
799679686 648574232
102602909 467685128
405440859 796808887
384858152 191995380
433392826 195648471
5 13
831367906 510447872
795639287 575551283
811207605 176441088
240156289 946977042
133416463 721098873
5 5
806744021 699586200
630510306 637827160
49223781 641709297
...

output:

3247545200
4106290713
2653993029
5122532137
5570513606
2031887824
2044500908
1857678917
6815058419
2237593918
6646615756
5638337819
3690874076
5497726904
5513905900
5404435094
4705403467
2411992217
3430587752
5098767681
3921151709
1445672728
2692878616
3833748807
2716183054
974485573
6464787173
8839...

result:

wrong answer 37th numbers differ - expected: '4432990072', found: '4220323429'