結果
問題 |
No.412 花火大会
|
ユーザー |
![]() |
提出日時 | 2016-09-30 14:09:36 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 1,042 bytes |
コンパイル時間 | 645 ms |
コンパイル使用メモリ | 72,352 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-21 11:11:12 |
合計ジャッジ時間 | 1,476 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 18 |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:39:20: warning: format ‘%lld’ expects argument of type ‘long long int’, but argument 2 has type ‘int’ [-Wformat=] 39 | 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]){//j個目に条件を満たすもととして選択可 dp[i + 1][j + 1] += dp[i][j];//選択する dp[i + 1][j] += dp[i][j];//選択しない }else{//選択しても条件は満たさない dp[i + 1][j] += 2 * dp[i][j];//選択するしないの2通り } } } printf("%lld\n", dp[n][3]); return 0; }