結果

問題 No.2918 Divide Applicants Fairly
ユーザー rlangevinrlangevin
提出日時 2024-10-12 00:30:52
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,059 bytes
コンパイル時間 1,355 ms
コンパイル使用メモリ 106,600 KB
実行使用メモリ 354,836 KB
最終ジャッジ日時 2024-10-12 00:32:07
合計ジャッジ時間 65,531 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
73,492 KB
testcase_01 AC 286 ms
104,724 KB
testcase_02 AC 179 ms
89,108 KB
testcase_03 AC 1,209 ms
229,716 KB
testcase_04 AC 1,381 ms
245,388 KB
testcase_05 AC 489 ms
151,592 KB
testcase_06 AC 594 ms
167,316 KB
testcase_07 AC 261 ms
104,724 KB
testcase_08 AC 344 ms
120,340 KB
testcase_09 AC 1,256 ms
229,784 KB
testcase_10 AC 1,232 ms
229,780 KB
testcase_11 AC 1,367 ms
245,392 KB
testcase_12 AC 1,428 ms
260,904 KB
testcase_13 AC 850 ms
198,616 KB
testcase_14 AC 608 ms
167,296 KB
testcase_15 AC 1,585 ms
245,396 KB
testcase_16 AC 1,352 ms
245,400 KB
testcase_17 AC 933 ms
198,460 KB
testcase_18 AC 1,376 ms
245,356 KB
testcase_19 AC 164 ms
89,160 KB
testcase_20 AC 886 ms
198,556 KB
testcase_21 AC 1,057 ms
214,168 KB
testcase_22 AC 231 ms
104,728 KB
testcase_23 AC 1,373 ms
245,396 KB
testcase_24 AC 1,342 ms
245,440 KB
testcase_25 AC 1,358 ms
245,240 KB
testcase_26 AC 476 ms
151,592 KB
testcase_27 AC 1,208 ms
229,792 KB
testcase_28 AC 601 ms
167,228 KB
testcase_29 AC 833 ms
198,552 KB
testcase_30 AC 1,357 ms
245,440 KB
testcase_31 AC 982 ms
214,092 KB
testcase_32 AC 1,196 ms
229,752 KB
testcase_33 AC 40 ms
42,248 KB
testcase_34 AC 67 ms
57,876 KB
testcase_35 AC 105 ms
73,492 KB
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 AC 18 ms
26,592 KB
testcase_40 AC 20 ms
26,540 KB
testcase_41 AC 18 ms
26,600 KB
testcase_42 AC 18 ms
26,696 KB
testcase_43 AC 19 ms
26,632 KB
testcase_44 AC 18 ms
26,660 KB
testcase_45 AC 18 ms
26,776 KB
testcase_46 RE -
testcase_47 AC 306 ms
120,344 KB
testcase_48 AC 1,826 ms
276,628 KB
testcase_49 TLE -
testcase_50 AC 421 ms
136,092 KB
testcase_51 AC 1,703 ms
276,628 KB
testcase_52 AC 793 ms
182,912 KB
testcase_53 AC 1,619 ms
276,600 KB
testcase_54 AC 134 ms
73,492 KB
testcase_55 TLE -
testcase_56 TLE -
testcase_57 AC 935 ms
198,536 KB
testcase_58 TLE -
testcase_59 TLE -
testcase_60 AC 781 ms
182,900 KB
testcase_61 AC 1,920 ms
292,216 KB
testcase_62 AC 1,435 ms
245,428 KB
testcase_63 AC 1,370 ms
245,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <map>
#include <bitset>

using namespace std;

int main() {
    int N;
    cin >> N;
    vector<int> R(N);
    for (int i = 0; i < N; ++i) {
        cin >> R[i];
    }

    map<int, bitset<32000005>> pre;
    int M = 0;
    for (int r : R) M += r;
    M += 5;

    pre[0].set(M);
    
    for (int i = 0; i < N; ++i) {
        map<int, bitset<32000005>> dp;
        
        for (auto& [k, v] : pre) {
            dp[k] |= v;
            if (k == 1) {
                if (v[M + R[i]]) {
                    cout << 0 << endl;
                    return 0;
                }
            }
            if (k == -1) {
                if (v[M - R[i]]) {
                    cout << 0 << endl;
                    return 0;
                }
            }
            dp[k - 1] |= v >> R[i];
            dp[k + 1] |= v << R[i];
        }
        swap(dp, pre);
    }

    for (int i = 1; i < M; ++i) {
        if (pre[0][M + i]) {
            cout << i << endl;
            return 0;
        }
    }

    return 0;
}
0