Submission #1036845

# Submission time Handle Problem Language Result Execution time Memory
1036845 2024-07-27T17:57:53 Z XJP12 Catfish Farm (IOI22_fish) C++17
0 / 100
16 ms 8284 KB
#include <bits/stdc++.h>
#include "fish.h"
using namespace std;
typedef long long ll;
typedef vector<int> vi;
ll max_weights(int n, int m, vi x, vi y, vi w){
	ll dp[n][4];
	vector<ll> v(n,0);
	sort(x.begin(), x.end());
	for(int i=0; i<n; i++){
		v[x[i]] = w[i];
	}
	if(n==2){
		return max(w[0], w[1]);
	}
	for(int i=2; i<n; i++){
		if(i==2){
			dp[i][0]=0;
			dp[i][1]=v[i]+v[i-2];
			dp[i][2]=v[i-1];
			dp[i][3]=v[i];
			continue;
		}
			dp[i][0]=max(dp[i-1][0], dp[i-1][2]);
			dp[i][1]=max(dp[i-1][0]+v[i-2] + v[i], dp[i-1][2] + v[i]);
			dp[i][2]=max(dp[i-1][1], dp[i-1][3]);
			dp[i][3]=max(dp[i-1][1]+ v[i], dp[i-1][3] + v[i]);
	}
	return max({dp[n-1][0], dp[n-1][1], dp[n-1][2],dp[n-1][3]});
}
# Verdict Execution time Memory Grader output
1 Incorrect 16 ms 7260 KB 1st lines differ - on the 1st token, expected: '40313272768926', found: '4550502524430'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 344 KB 1st lines differ - on the 1st token, expected: '2', found: '1'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 5 ms 8284 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 348 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 0 ms 348 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 0 ms 348 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 Runtime error 5 ms 8284 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 16 ms 7260 KB 1st lines differ - on the 1st token, expected: '40313272768926', found: '4550502524430'
2 Halted 0 ms 0 KB -