結果
| 問題 |
No.45 回転寿司
|
| ユーザー |
|
| 提出日時 | 2015-05-24 14:33:32 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
CE
(最新)
AC
(最初)
|
| 実行時間 | - |
| コード長 | 648 bytes |
| コンパイル時間 | 399 ms |
| コンパイル使用メモリ | 29,028 KB |
| 最終ジャッジ日時 | 2024-11-14 19:03:47 |
| 合計ジャッジ時間 | 824 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
コンパイルエラー時のメッセージ・ソースコードは、提出者また管理者しか表示できないようにしております。(リジャッジ後のコンパイルエラーは公開されます)
ただし、clay言語の場合は開発者のデバッグのため、公開されます。
ただし、clay言語の場合は開発者のデバッグのため、公開されます。
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:10:3: error: ‘vector’ was not declared in this scope
10 | vector<int> v(n);
| ^~~~~~
main.cpp:3:1: note: ‘std::vector’ is defined in header ‘<vector>’; did you forget to ‘#include <vector>’?
2 | #include <algorithm>
+++ |+#include <vector>
3 | using namespace std;
main.cpp:10:10: error: expected primary-expression before ‘int’
10 | vector<int> v(n);
| ^~~
main.cpp:11:40: error: ‘v’ was not declared in this scope
11 | for(int i : range(n)) { scanf("%d", &v[i]); }
| ^
main.cpp:12:31: error: ‘v’ was not declared in this scope
12 | if(n == 1) { printf("%d\n", v[0]); return 0; }
| ^
main.cpp:13:10: error: expected primary-expression before ‘int’
13 | vector<int> dp(n);
| ^~~
main.cpp:14:3: error: ‘dp’ was not declared in this scope
14 | dp[0] = v[0];
| ^~
main.cpp:14:11: error: ‘v’ was not declared in this scope
14 | dp[0] = v[0];
| ^
main.cpp:9:15: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
9 | int n; scanf("%d", &n);
| ~~~~~^~~~~~~~~~
ソースコード
#include <cstdio>
#include <algorithm>
using namespace std;
class range {private: struct I{int x;int operator*(){return x;}bool operator!=(I& lhs){return x<lhs.x;}void operator++(){++x;}};I i,n;
public:range(int n):i({0}),n({n}){}range(int i,int n):i({i}),n({n}){}I& begin(){return i;}I& end(){return n;}};
int main(void) {
int n; scanf("%d", &n);
vector<int> v(n);
for(int i : range(n)) { scanf("%d", &v[i]); }
if(n == 1) { printf("%d\n", v[0]); return 0; }
vector<int> dp(n);
dp[0] = v[0];
dp[1] = max(v[0], v[1]);
for(int i : range(2, n)) {
dp[i] = max(dp[i-1], dp[i-2] + v[i]);
}
printf("%d\n", dp[n-1]);
return 0;
}