結果
問題 | No.54 Happy Hallowe'en |
ユーザー | kimiyuki |
提出日時 | 2017-01-03 16:40:33 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,672 bytes |
コンパイル時間 | 1,042 ms |
コンパイル使用メモリ | 91,844 KB |
実行使用メモリ | 6,940 KB |
最終ジャッジ日時 | 2024-05-09 16:09:36 |
合計ジャッジ時間 | 98,409 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 4,801 ms
5,248 KB |
testcase_01 | AC | 4,803 ms
5,376 KB |
testcase_02 | AC | 4,801 ms
5,376 KB |
testcase_03 | AC | 4,802 ms
5,376 KB |
testcase_04 | AC | 4,804 ms
5,376 KB |
testcase_05 | AC | 4,805 ms
5,376 KB |
testcase_06 | AC | 4,809 ms
5,376 KB |
testcase_07 | AC | 4,807 ms
5,376 KB |
testcase_08 | AC | 4,816 ms
5,376 KB |
testcase_09 | AC | 4,811 ms
5,376 KB |
testcase_10 | AC | 4,802 ms
5,376 KB |
testcase_11 | AC | 4,801 ms
5,376 KB |
testcase_12 | WA | - |
testcase_13 | AC | 4,814 ms
5,376 KB |
testcase_14 | AC | 4,802 ms
5,376 KB |
testcase_15 | AC | 4,802 ms
5,376 KB |
testcase_16 | AC | 4,801 ms
5,376 KB |
testcase_17 | AC | 4,802 ms
5,376 KB |
testcase_18 | AC | 4,801 ms
5,376 KB |
ソースコード
#include <iostream> #include <vector> #include <algorithm> #include <numeric> #include <bitset> #include <memory> #include <chrono> #define repeat(i,n) for (int i = 0; (i) < int(n); ++(i)) #define repeat_from(i,m,n) for (int i = (m); (i) < int(n); ++(i)) #define repeat_reverse(i,n) for (int i = (n)-1; (i) >= 0; --(i)) #define whole(f,x,...) ([&](decltype((x)) whole) { return (f)(begin(whole), end(whole), ## __VA_ARGS__); })(x) using namespace std; template <class T> void setmax(T & a, T const & b) { if (a < b) a = b; } template <class T> void setmin(T & a, T const & b) { if (b < a) a = b; } int main() { int n; cin >> n; vector<int> v(n), t(n); repeat (i,n) cin >> v[i] >> t[i]; vector<int> ix(n); whole(iota, ix, 0); whole(sort, ix, [&](int i, int j) { return t[i] < t[j]; }); int ans = -1; chrono::high_resolution_clock::time_point clock_begin = chrono::high_resolution_clock::now(); while (true) { chrono::high_resolution_clock::time_point clock_end = chrono::high_resolution_clock::now(); if (chrono::duration_cast<chrono::milliseconds>(clock_end - clock_begin).count() >= 4800) break; auto dp = make_unique<bitset<2*10000+1> >(); (*dp)[0] = true; whole(random_shuffle, ix); for (int i : ix) { auto it = make_unique<bitset<2*10000+1> >(); it->flip(); *it <<= t[i]; it->flip(); *it &= *dp; *it <<= v[i]; *dp |= *it; } repeat_reverse (i,dp->size()) { if ((*dp)[i]) setmax(ans, i); if (i == ans) break; } } cout << ans << endl; return 0; }