Submission #1036763

# Submission time Handle Problem Language Result Execution time Memory
1036763 2024-07-27T16:26:50 Z XJP12 Catfish Farm (IOI22_fish) C++17
0 / 100
17 ms 6744 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];
	vi v(n,0);
	ll cont=0;
	for(int i=0; i<n; i++){
		if(cont==m) break;
		if(x[cont]==i){
			v[i]=w[cont];
			cont++;
		}
	}
	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-1] + 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(max(dp[n-1][0], dp[n-1][1]),max(dp[n-1][2],dp[n-1][3]));
}
# Verdict Execution time Memory Grader output
1 Incorrect 17 ms 6744 KB 1st lines differ - on the 1st token, expected: '40313272768926', found: '55091480'
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 Correct 3 ms 3928 KB Output is correct
2 Correct 2 ms 3928 KB Output is correct
3 Incorrect 11 ms 5724 KB 1st lines differ - on the 1st token, expected: '21261825233649', found: '933021958'
4 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: '3', found: '1'
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: '3', found: '1'
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: '3', found: '1'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 3 ms 3928 KB Output is correct
2 Correct 2 ms 3928 KB Output is correct
3 Incorrect 11 ms 5724 KB 1st lines differ - on the 1st token, expected: '21261825233649', found: '933021958'
4 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 17 ms 6744 KB 1st lines differ - on the 1st token, expected: '40313272768926', found: '55091480'
2 Halted 0 ms 0 KB -