結果
問題 | No.412 花火大会 |
ユーザー | srup٩(๑`н´๑)۶ |
提出日時 | 2016-09-30 13:41:38 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 849 bytes |
コンパイル時間 | 937 ms |
コンパイル使用メモリ | 71,664 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-21 11:11:10 |
合計ジャッジ時間 | 1,394 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | AC | 1 ms
6,816 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 1 ms
6,820 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 2 ms
6,816 KB |
testcase_09 | AC | 2 ms
6,816 KB |
testcase_10 | AC | 2 ms
6,820 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 2 ms
6,816 KB |
testcase_17 | AC | 1 ms
6,816 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 1 ms
6,820 KB |
testcase_21 | WA | - |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:38:20: warning: format ‘%lld’ expects argument of type ‘long long int’, but argument 2 has type ‘int’ [-Wformat=] 38 | printf("%lld\n", dp[n][3]); | ~~~^ ~~~~~~~~ | | | | | int | long long int | %d
ソースコード
#include <iostream> #include <algorithm> #include <vector> #include <queue> #include <cstdio> #include <cmath> using namespace std; typedef long long ll; #define rep(i,n) for(int i=0;i<(n);i++) const int INF = 1e9; //dp[i][j] := i番目のマットまでで考えて、 //j=1ならBのマットは条件を満たし、j=2ならBCのマットは条件を満たし、 // j=3ならすべてのマットの条件を満たす int dp[50][4]; int main(void){ vector<int> s(3); int n; rep(i, 3) cin >> s[i]; cin >> n; sort(s.begin(), s.end()); vector<int> e(n); rep(i, n) cin >> e[i]; sort(e.begin(), e.end()); dp[0][0] = 1; for (int i = 0; i < n; ++i){ for (int j = 0; j <= 3; ++j){ if(j < 3 && s[j] <= e[i]){ dp[i + 1][j + 1] += dp[i][j]; }else{ dp[i + 1][j] += dp[i][j]; } } } printf("%lld\n", dp[n][3]); return 0; }