結果
問題 | No.107 モンスター |
ユーザー | sntea |
提出日時 | 2016-10-13 20:04:13 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,017 bytes |
コンパイル時間 | 1,578 ms |
コンパイル使用メモリ | 172,028 KB |
実行使用メモリ | 210,816 KB |
最終ジャッジ日時 | 2024-11-22 04:41:05 |
合計ジャッジ時間 | 8,091 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 1 ms
5,248 KB |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | WA | - |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | AC | 2 ms
5,248 KB |
testcase_11 | AC | 2 ms
5,248 KB |
testcase_12 | AC | 2 ms
5,248 KB |
testcase_13 | AC | 200 ms
48,640 KB |
testcase_14 | AC | 351 ms
100,352 KB |
testcase_15 | AC | 351 ms
100,224 KB |
testcase_16 | AC | 3 ms
5,248 KB |
testcase_17 | AC | 85 ms
24,192 KB |
testcase_18 | AC | 947 ms
210,816 KB |
testcase_19 | AC | 929 ms
210,816 KB |
testcase_20 | AC | 158 ms
48,640 KB |
testcase_21 | AC | 165 ms
48,640 KB |
testcase_22 | AC | 460 ms
100,224 KB |
testcase_23 | AC | 845 ms
210,816 KB |
testcase_24 | AC | 1,031 ms
210,688 KB |
ソースコード
#ifdef LOCAL111 #else #define NDEBUG #endif #include <bits/stdc++.h> const int INF = 1e9; using namespace std; template<typename T, typename U> ostream& operator<< (ostream& os, const pair<T,U>& p) { cout << '(' << p.first << ' ' << p.second << ')'; return os; } #define endl '\n' #define ALL(a) (a).begin(),(a).end() #define SZ(a) int((a).size()) #define FOR(i,a,b) for(int i=(a);i<(b);++i) #define RFOR(i,a,b) for (int i=(b)-1;i>=(a);i--) #define REP(i,n) FOR(i,0,n) #define RREP(i,n) for (int i=(n)-1;i>=0;i--) #define RBP(i,a) for(auto& i : a) #ifdef LOCAL111 #define DEBUG(x) cout<<#x<<": "<<(x)<<endl template<typename T> void dpite(T a, T b){ for(T ite = a; ite != b; ite++) cout << (ite == a ? "" : " ") << *ite; cout << endl;} #else #define DEBUG(x) true template<typename T> void dpite(T a, T b){ return; } #endif #define F first #define S second #define SNP string::npos #define WRC(hoge) cout << "Case #" << (hoge)+1 << ": " #define rangej(a,b,c) ((a) <= (c) and (c) < (b)) #define rrangej(b,c) rangej(0,b,c) template<typename T> void pite(T a, T b){ for(T ite = a; ite != b; ite++) cout << (ite == a ? "" : " ") << *ite; cout << endl;} template<typename T> bool chmax(T& a, T b){if(a < b){a = b; return true;} return false;} template<typename T> bool chmin(T& a, T b){if(a > b){a = b; return true;} return false;} typedef long long int LL; typedef unsigned long long ULL; typedef pair<int,int> P; typedef pair<LL,LL> LP; void ios_init(){ //cout.setf(ios::fixed); //cout.precision(12); #ifdef LOCAL111 return; #endif ios::sync_with_stdio(false); cin.tie(0); } vector<int> bit_toposort(int n) { vector<int> res; res.reserve(1<<n); vector<bool> used(1<<n,false); function<void(int)> rec = [&](int mask){ used[mask] = true; for(int i = 0; i < n; ++i) { if(!((mask>>i)&1)){ if(!used[mask|(1<<i)]) rec(mask|(1<<i)); } } res.push_back(mask); return; }; rec(0); return res; } int main() { ios_init(); int n; bitset<1600> bits[17]; REP(i,1600) bits[0][i] = true; REP(i,16){ bits[i+1] = bits[i]<<100; } REP(i,17) DEBUG(bits[i]); while(cin >> n){ vector<int> d(n); REP(i,n) cin >> d[i]; using vb = bitset<1600>; vector<vector<vb>> dp((1<<n),vector<vb>(n)); dp[(1<<n)-1][0][99] = true; auto topo = bit_toposort(n); dpite(ALL(topo)); DEBUG(SZ(topo)); REP(i,SZ(topo)){ int mask = topo[i]; DEBUG(bitset<16>(mask)); if(mask == (1<<n)-1) continue; REP(j,n){ REP(k,n) if(!((mask>>k)&1)){ if(d[k] < 0){ if(j) dp[mask][j] |= dp[mask|(1<<k)][j-1]>>(-d[k]); } else { auto t = dp[mask|(1<<k)][j]<<d[k]; if((t&bits[j+1]) != 0){ t[100*(j+1)-1] = true; t &= ~bits[j+1]; } dp[mask][j] |= t; } } } } int ans = 0; // REP(mask,1<<n) REP(j,n){ // DEBUG(bitset<16>(mask)); DEBUG(j); DEBUG(dp[mask][j]); // } // cout << endl << endl << endl; REP(i,n) RREP(j,1600){ if(dp[0][i][j]){ ans = max(ans,j+1); break; } } cout << ans << endl; } return 0; }