# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
923599 |
2024-02-07T13:24:24 Z |
parlimoos |
Jump (BOI06_jump) |
C++17 |
|
16 ms |
860 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 * 1e16);
int n;
int mat[100][100];
arr(7) dp[100][100];
arr(7) zr = {0 , 0 , 0 , 0 , 0 , 0 , 0};
arr(7) Sum(arr(7) &a , arr(7) &b){
arr(7) res = zr;
for(int i = 0 ; i < 7 ; i++) res[i] = a[i] + b[i];
for(int i = 0 ; i < 6 ; 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};
f(0 , 0);
int inx = 6;
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 |
860 KB |
Output is correct |
2 |
Correct |
1 ms |
860 KB |
Output is correct |
3 |
Correct |
0 ms |
860 KB |
Output is correct |
4 |
Correct |
1 ms |
860 KB |
Output is correct |
5 |
Correct |
1 ms |
856 KB |
Output is correct |
6 |
Correct |
1 ms |
860 KB |
Output is correct |
7 |
Correct |
1 ms |
860 KB |
Output is correct |
8 |
Correct |
1 ms |
856 KB |
Output is correct |
9 |
Correct |
1 ms |
856 KB |
Output is correct |
10 |
Correct |
0 ms |
860 KB |
Output is correct |
11 |
Correct |
1 ms |
860 KB |
Output is correct |
12 |
Correct |
1 ms |
860 KB |
Output is correct |
13 |
Correct |
1 ms |
860 KB |
Output is correct |
14 |
Correct |
1 ms |
860 KB |
Output is correct |
15 |
Correct |
8 ms |
860 KB |
Output is correct |
16 |
Correct |
1 ms |
860 KB |
Output is correct |
17 |
Correct |
16 ms |
860 KB |
Output is correct |
18 |
Correct |
1 ms |
860 KB |
Output is correct |
19 |
Incorrect |
9 ms |
860 KB |
Output isn't correct |
20 |
Correct |
1 ms |
860 KB |
Output is correct |