結果
| 問題 | No.45 回転寿司 |
| ユーザー |
nanatutmc
|
| 提出日時 | 2019-10-30 01:01:41 |
| 言語 | C(gnu17) (gcc 15.2.0) |
| 結果 |
CE
(最新)
AC
(最初)
|
| 実行時間 | - |
| コード長 | 1,220 bytes |
| 記録 | |
| コンパイル時間 | 160 ms |
| コンパイル使用メモリ | 27,976 KB |
| 最終ジャッジ日時 | 2026-02-22 04:49:50 |
|
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
コンパイルエラー時のメッセージ・ソースコードは、提出者また管理者しか表示できないようにしております。(リジャッジ後のコンパイルエラーは公開されます)
ただし、clay言語の場合は開発者のデバッグのため、公開されます。
ただし、clay言語の場合は開発者のデバッグのため、公開されます。
コンパイルメッセージ
main.c: In function 'main':
main.c:31:10: error: implicit declaration of function 'takeSushi' [-Wimplicit-function-declaration]
31 | s1 = takeSushi(0, 0, N, V);
| ^~~~~~~~~
ソースコード
#include <stdio.h>
int scoreTable[1000];
int main() {
int N;
int V[1000];
scanf("%d", &N);
int i;
for (int i=0; i<N; i++) {
scanf("%d", &(V[i]));
scoreTable[i] = 0;
}
if (N == 1) {
printf("%d\n", V[0]);
return 0;
}
if (N == 2) {
if (V[0] > V[1])
printf("%d\n", V[0]);
else
printf("%d\n", V[1]);
return 0;
}
int s1, s2;
s1 = takeSushi(0, 0, N, V);
s2 = takeSushi(0, 1, N, V);
if (s1 > s2)
printf("%d\n", s1);
else
printf("%d\n", s2);
}
int takeSushi(int score, int position, int N, int V[]) {
if (scoreTable[position] > 0)
return score+scoreTable[position];
int score1 = score + V[position];
if (position == N-1 || position == N-2) {
return score1;
}
if (position == N-3) {
return score1 + V[N-1];
}
int s1, s2;
s1 = takeSushi(score1, position+2, N, V);
s2 = takeSushi(score1, position+3, N, V);
if (s1 > s2) {
scoreTable[position] = s1-score;
return s1;
} else {
scoreTable[position] = s2-score;
return s2;
}
}
nanatutmc