Submission #923601

# Submission time Handle Problem Language Result Execution time Memory
923601 2024-02-07T13:27:32 Z parlimoos Jump (BOI06_jump) C++17
90 / 100
20 ms 1372 KB
//Be Name KHODA
#pragma GCC optimize("Ofast")
#include<bits/stdc++.h>
#include<array>
using namespace std;

typedef long long ll;
typedef long double ld;
#define pb push_back
#define pp pop_back
#define lb lower_bound
#define ub upper_bound
#define cl clear
#define bg begin
#define arr(x) array<unsigned long long , x>
#define endl '\n'

const unsigned long long INF = (1ll * 1e10);

int n;
int mat[100][100];
arr(11) dp[100][100];
arr(11) zr = {0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0};

arr(11) Sum(arr(11) &a , arr(11) &b){
	arr(11) res = zr;
	for(int i = 0 ; i < 11 ; i++) res[i] = a[i] + b[i];
	for(int i = 0 ; i < 10 ; i++){
		unsigned long long d = res[i] % INF;
		res[i + 1] += (res[i] / INF);
		res[i] = d;
	}
	return res;
}
void f(int i , int j){
	if(dp[i][j] != zr) return;
	if(mat[i][j] == 0) return;
	if(i + mat[i][j] >= n and j + mat[i][j] >= n) return;
	if(i + mat[i][j] >= n) f(i , j + mat[i][j]) , dp[i][j] = dp[i][j + mat[i][j]];
	else if(j + mat[i][j] >= n) f(i + mat[i][j] , j) , dp[i][j] = dp[i + mat[i][j]][j];
	else{
		f(i + mat[i][j] , j) , f(i , j + mat[i][j]);
		dp[i][j] = Sum(dp[i + mat[i][j]][j] , dp[i][j + mat[i][j]]);
	}
}

int main(){
	ios::sync_with_stdio(0);
	cin.tie(0);
	
	cin >> n;
	for(int i = 0 ; i < n ; i++){
		for(int j = 0 ; j < n ; j++){
			cin >> mat[i][j];
		}
	}
	fill(&dp[0][0] , &dp[99][100] , zr);
	dp[n - 1][n - 1] = {1 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0};
	f(0 , 0);
	int inx = 10;
	while(inx >= 0 and dp[0][0][inx] == 0) inx--;
	for(int i = max(0 , inx) ; i >= 0 ; i--) cout << dp[0][0][i];
}
# Verdict Execution time Memory Grader output
1 Correct 1 ms 1116 KB Output is correct
2 Correct 1 ms 1116 KB Output is correct
3 Correct 1 ms 1116 KB Output is correct
4 Correct 1 ms 1112 KB Output is correct
5 Correct 1 ms 1116 KB Output is correct
6 Correct 1 ms 1116 KB Output is correct
7 Correct 1 ms 1116 KB Output is correct
8 Correct 1 ms 1116 KB Output is correct
9 Correct 1 ms 1116 KB Output is correct
10 Correct 1 ms 1116 KB Output is correct
11 Correct 1 ms 1116 KB Output is correct
12 Correct 1 ms 1116 KB Output is correct
13 Correct 1 ms 1116 KB Output is correct
14 Correct 1 ms 1116 KB Output is correct
15 Correct 9 ms 1116 KB Output is correct
16 Correct 1 ms 1372 KB Output is correct
17 Correct 20 ms 1372 KB Output is correct
18 Incorrect 1 ms 1372 KB Output isn't correct
19 Correct 10 ms 1372 KB Output is correct
20 Incorrect 1 ms 1372 KB Output isn't correct