結果
問題 | No.54 Happy Hallowe'en |
ユーザー | たこし |
提出日時 | 2018-11-20 14:41:25 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,242 bytes |
コンパイル時間 | 1,858 ms |
コンパイル使用メモリ | 206,492 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-06 21:10:47 |
合計ジャッジ時間 | 3,818 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #define INF 100000000 #define YJ 1145141919 #define INF_INT_MAX 2147483647 #define INF_LL 9223372036854775 #define INF_LL_MAX 9223372036854775807 #define EPS 1e-10 #define MOD 1000000007 #define MOD9 998244353 #define Pi acos(-1) #define LL long long #define ULL unsigned long long #define LD long double #define int long long #define FOR(i,a,b) for(int i=(a);i<(b);++i) #define REP(i,n) FOR(i,0,n) #define ALL(a) begin((a)), end((a)) #define RALL(a) (a).rbegin(), (a).rend() #define PB push_back #define MP make_pair #define SZ(a) int((a).size()) const int MAX_N = 100; int N; struct VTNode { int v, t; bool operator < (const VTNode& vt) const { return t+v < vt.t+vt.v; } }VT[MAX_N]; bitset<MAX_N*2> dp[MAX_N]; signed main() { cin >> N; REP(n,N) { cin >> VT[n].v >> VT[n].t; } sort(VT, VT+N); dp[0].set(0); REP(n,N) { //もらわない場合 dp[n+1] |= dp[n]; //貰う場合 dp[n] <<= (MAX_N*2 - VT[n].t); dp[n] >>= (MAX_N*2 - VT[n].t); dp[n] <<= VT[n].v; dp[n+1] |= dp[n]; // cerr << dp[n+1].to_string() << endl; } for(int n = 2*MAX_N-1; 0 <= n; n--) { if(dp[N][n] == 1) { cout << n << endl; return 0; } } cout << 0 << endl; return 0; }