結果
問題 | No.664 超能力者Aと株価予測 |
ユーザー | bal4u |
提出日時 | 2019-08-21 16:33:51 |
言語 | C (gcc 12.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 931 bytes |
コンパイル時間 | 999 ms |
コンパイル使用メモリ | 29,952 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-09 06:12:20 |
合計ジャッジ時間 | 1,727 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | AC | 1 ms
5,248 KB |
testcase_04 | AC | 1 ms
5,248 KB |
testcase_05 | AC | 1 ms
5,248 KB |
testcase_06 | AC | 1 ms
5,248 KB |
testcase_07 | AC | 1 ms
5,248 KB |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | WA | - |
testcase_10 | AC | 3 ms
5,248 KB |
testcase_11 | AC | 6 ms
5,248 KB |
testcase_12 | AC | 5 ms
5,248 KB |
testcase_13 | AC | 4 ms
5,248 KB |
testcase_14 | AC | 1 ms
5,248 KB |
コンパイルメッセージ
main.c: In function 'in': main.c:7:14: warning: implicit declaration of function 'getchar_unlocked' [-Wimplicit-function-declaration] 7 | #define gc() getchar_unlocked() | ^~~~~~~~~~~~~~~~ main.c:13:24: note: in expansion of macro 'gc' 13 | int n = 0, c = gc(); | ^~
ソースコード
// yukicoder: No.664 超能力者Aと株価予測 // 2019.8.21 bal4u #include <stdio.h> #if 1 #define gc() getchar_unlocked() #else #define gc() getchar() #endif int in() { // 非負整数の入力 int n = 0, c = gc(); do n = 10 * n + (c & 0xf); while ((c = gc()) >= '0'); return n; } int dp[25][400]; int a[400]; inline static void chmax(int *ma, int x) { if (*ma < x) *ma = x; } int main() { int i, fr, to, N, M, K, ans; N = in(), M = in(), K = in(); for (i = 0; i <= N; i++) a[i] = in(); for (i = 0; i <= N; i++) dp[0][i] = K; for (i = 1; i <= M; i++) { for (to = 1; to <= N; to++) { for (fr = 0; fr < to; fr++) if (a[fr] < a[to]) { int x = dp[i-1][fr]/a[fr]*(a[to]-a[fr]) + dp[i-1][fr]; // 資金の変化 chmax(&dp[i][to], x); } } for (to = 1; to <= N; to++) chmax(&dp[i][to], dp[i][to-1]); } ans = 0; for (i = 0; i <= M; i++) chmax(&ans, dp[i][N]); printf("%d\n", ans); return 0; }