답안 #628460

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
628460 2022-08-13T12:14:13 Z MateGiorbelidze 메기 농장 (IOI22_fish) C++17
0 / 100
42 ms 25172 KB
#include "fish.h"
#include <bits/stdc++.h>
using namespace std;
#define ll long long

ll a[3001][3001] , b[3001][3001] , d[3001][3001];
int n , m;

long long max_weights(int N, int M, std::vector<int> X, std::vector<int> Y,
                      std::vector<int> W) {
    n = N; m = M;
    
    for (int i = 0; i < m; i++) {
    	d[Y[i] + 1][X[i] + 1] = W[i];
	}
	
	for (int j = 1; j <= n; j++) {
		
		a[1][j] = b[1][j - 1] + d[1][j];
				
		for (int i = 2; i <= n; i++) {
			
			a[i][j] = max(a[i - 1][j] , a[i - 1][j - 1]) + d[i][j];
			
		}
		
		if (j == 1) continue;
		
		b[n][j] = a[n][j - 2] +  + d[n][j];
		
		for (int i = n - 1; i > 0; i--) {
			
			b[i][j] = max(a[i + 1][j] , a[i + 1][j - 1]) + d[i][j];
			
		}
		
	}
	
	ll ans = 0;
	
	for (int i = 1; i <= n; i++) {
		for (int j = 1; j <= n; j++) {
			
			ans = max(ans , a[i][j]);
			ans = max(ans , b[i][j]);
			
		}
	}
	
	cout<<a[5][2];
	
	return ans;
                      	
}
# 결과 실행 시간 메모리 Grader output
1 Runtime error 25 ms 4180 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 340 KB Possible tampering with the output
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 42 ms 25172 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 340 KB Possible tampering with the output
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 340 KB Possible tampering with the output
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 340 KB Possible tampering with the output
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 42 ms 25172 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 25 ms 4180 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -