結果

問題 No.2918 Divide Applicants Fairly
ユーザー rlangevinrlangevin
提出日時 2024-10-12 00:28:03
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 1,059 bytes
コンパイル時間 1,402 ms
コンパイル使用メモリ 106,008 KB
実行使用メモリ 222,900 KB
最終ジャッジ日時 2024-10-12 00:28:48
合計ジャッジ時間 43,114 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
47,192 KB
testcase_01 AC 168 ms
66,748 KB
testcase_02 AC 116 ms
57,024 KB
testcase_03 AC 765 ms
144,644 KB
testcase_04 AC 891 ms
154,560 KB
testcase_05 AC 317 ms
96,096 KB
testcase_06 AC 385 ms
105,696 KB
testcase_07 AC 157 ms
66,628 KB
testcase_08 AC 232 ms
76,424 KB
testcase_09 AC 842 ms
144,644 KB
testcase_10 AC 772 ms
144,772 KB
testcase_11 AC 875 ms
154,568 KB
testcase_12 AC 890 ms
164,456 KB
testcase_13 AC 552 ms
125,280 KB
testcase_14 AC 372 ms
105,736 KB
testcase_15 AC 868 ms
154,592 KB
testcase_16 AC 835 ms
154,648 KB
testcase_17 AC 585 ms
125,320 KB
testcase_18 AC 861 ms
154,556 KB
testcase_19 AC 119 ms
56,968 KB
testcase_20 AC 556 ms
125,352 KB
testcase_21 AC 670 ms
134,992 KB
testcase_22 AC 156 ms
66,780 KB
testcase_23 AC 854 ms
154,636 KB
testcase_24 AC 866 ms
154,636 KB
testcase_25 AC 875 ms
154,632 KB
testcase_26 AC 309 ms
95,880 KB
testcase_27 AC 739 ms
144,776 KB
testcase_28 AC 384 ms
105,736 KB
testcase_29 AC 528 ms
125,296 KB
testcase_30 AC 867 ms
154,560 KB
testcase_31 AC 614 ms
135,044 KB
testcase_32 AC 773 ms
144,776 KB
testcase_33 AC 33 ms
27,516 KB
testcase_34 AC 53 ms
37,384 KB
testcase_35 AC 76 ms
47,116 KB
testcase_36 AC 1,644 ms
222,900 KB
testcase_37 AC 1,537 ms
213,340 KB
testcase_38 AC 1,415 ms
203,452 KB
testcase_39 RE -
testcase_40 AC 14 ms
18,044 KB
testcase_41 AC 14 ms
17,920 KB
testcase_42 AC 17 ms
17,920 KB
testcase_43 AC 13 ms
17,908 KB
testcase_44 AC 14 ms
17,860 KB
testcase_45 RE -
testcase_46 RE -
testcase_47 AC 199 ms
76,544 KB
testcase_48 AC 1,005 ms
174,088 KB
testcase_49 AC 1,408 ms
213,124 KB
testcase_50 AC 260 ms
86,240 KB
testcase_51 AC 1,040 ms
174,116 KB
testcase_52 AC 475 ms
115,336 KB
testcase_53 AC 973 ms
174,220 KB
testcase_54 AC 91 ms
47,116 KB
testcase_55 AC 1,262 ms
193,672 KB
testcase_56 AC 1,277 ms
193,676 KB
testcase_57 AC 559 ms
125,320 KB
testcase_58 AC 1,278 ms
193,796 KB
testcase_59 AC 1,300 ms
193,800 KB
testcase_60 AC 487 ms
115,460 KB
testcase_61 AC 1,206 ms
183,820 KB
testcase_62 AC 873 ms
154,576 KB
testcase_63 AC 858 ms
154,528 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<20000005>> 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<20000005>> 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