Submission #923819

#TimeUsernameProblemLanguageResultExecution timeMemory
923819OAleksaLet's Win the Election (JOI22_ho_t3)C++14
10 / 100
4 ms600 KiB
#include <bits/stdc++.h>
using namespace std;
#define f first
#define s second
#define int long long
const int N = 550;
const int inf = 1e18;
int n, k;
pair<int, int> a[N];
double dp1[N][N], dp2[N][N];
signed main() {
  ios::sync_with_stdio(false);
  cin.tie(0);
  cout.tie(0);
  int tt = 1;
  //cin >> tt;
  while (tt--) {
  	cin >> n >> k;
  	vector<int> tm;
  	for (int i = 1;i <= n;i++) {
  		cin >> a[i].f >> a[i].s;
  		tm.push_back(a[i].f);
  		if (a[i].s == -1)
  			a[i].s = inf;
  	}
  	sort(a + 1, a + n + 1, [&](pair<int, int> x, pair<int, int> y) {
  		if (x.s == y.s)
  			return x.f > y.f;
  		return x.s < y.s;
  	});
  	sort(tm.begin(), tm.end());
		double ans = 0;
  	for (int i = 0;i < k;i++)
  		ans += tm[i];
		double t = 0;
  	for (int i = 2;i <= k + 1;i++) {
  		t += (double)a[i - 1].s / (i - 1);
  		vector<int> x;
  		for (int j = i;j <= n;j++) 
  			x.push_back(a[j].f);
  		sort(x.begin(), x.end());
  		double res = t;
  		for (int j = 0;j < k - i + 1;j++) {
  			res += (double)x[j] / i;
  		}
  		ans = min(ans, res);
  	}
  	cout << fixed << setprecision(15) << ans;
  }
  return 0;
}

Compilation message (stderr)

Main.cpp: In function 'int main()':
Main.cpp:33:4: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
   33 |    for (int i = 0;i < k;i++)
      |    ^~~
Main.cpp:35:3: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
   35 |   double t = 0;
      |   ^~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...