| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 531158 | sidon | Jump (BOI06_jump) | C++17 | 5 ms | 972 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
void add(string &x, const string &y) {
int cur = 0, j = size(y);
for(int i = 0; i < j || cur; ++i) {
if(i < j) cur += y[i] - '0';
if(int(size(x)) == i) x.push_back('0');
cur += x[i] - '0';
x[i] = (cur % 10) + '0';
cur /= 10;
}
}
int main() {
ios::sync_with_stdio(0), cin.tie(0);
int n; cin >> n;
int a[n][n];
string b[n][n];
for(int i = 0; i < n; ++i) {
for(int j = 0; j < n; ++j) {
cin >> a[i][j];
b[i][j] = "0";
}
}
b[0][0] = "1";
for(int i = 0; i < n; ++i) {
for(int j = 0; j < n; ++j) {
if(i == n-1 && j == n-1) cout << string(b[i][j]);
if(i + a[i][j] < n) add(b[i + a[i][j]][j], b[i][j]);
if(j + a[i][j] < n) add(b[i][j + a[i][j]], b[i][j]);
}
}
}
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
