Submission #625985

# Submission time Handle Problem Language Result Execution time Memory
625985 2022-08-11T05:47:45 Z sword060 Catfish Farm (IOI22_fish) C++17
0 / 100
61 ms 5700 KB
#include <bits/stdc++.h>
#include "fish.h"
using namespace std;
long long max_weights(int x,int k,vector<int> a,vector<int> b,vector<int> c){
  vector<pair<int,int>>l[2];
  long long ans=0,cur=0;
  for(int i=0;i<k;i++){
    l[(a[i]%2)].push_back({b[i],c[i]});
    if((a[i]%2))cur+=c[i];
  }
  sort(l[0].begin(),l[0].end());
  sort(l[1].begin(),l[1].end());
  ans=cur;
  int j=(int)l[0].size()-1;
  for(int i=(int)l[1].size()-1;i>=0;i--){
    cur+=l[1][i].second;
    while(j>=0&&l[0][j].first>=l[1][i].first){
      cur-=l[1][i].second;
      j--;
    }
    ans=max(ans,cur);
  }
  return ans;
}
# Verdict Execution time Memory Grader output
1 Incorrect 30 ms 3288 KB 1st lines differ - on the 1st token, expected: '40313272768926', found: '0'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 0 ms 212 KB Output is correct
2 Incorrect 61 ms 5700 KB 1st lines differ - on the 1st token, expected: '40604614618209', found: '40507125378857'
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 212 KB 1st lines differ - on the 1st token, expected: '10082010', found: '0'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 256 KB 1st lines differ - on the 1st token, expected: '3', found: '1'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 256 KB 1st lines differ - on the 1st token, expected: '3', found: '1'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 256 KB 1st lines differ - on the 1st token, expected: '3', found: '1'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 212 KB 1st lines differ - on the 1st token, expected: '10082010', found: '0'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 30 ms 3288 KB 1st lines differ - on the 1st token, expected: '40313272768926', found: '0'
2 Halted 0 ms 0 KB -