結果

問題 No.2918 Divide Applicants Fairly
ユーザー 👑 potato167potato167
提出日時 2024-10-07 18:54:08
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 680 bytes
コンパイル時間 2,276 ms
コンパイル使用メモリ 202,552 KB
実行使用メモリ 168,704 KB
最終ジャッジ日時 2024-11-08 02:20:37
合計ジャッジ時間 73,600 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 417 ms
168,448 KB
testcase_01 AC 573 ms
168,576 KB
testcase_02 AC 494 ms
168,448 KB
testcase_03 AC 27 ms
36,480 KB
testcase_04 AC 26 ms
36,480 KB
testcase_05 AC 800 ms
168,576 KB
testcase_06 AC 873 ms
168,576 KB
testcase_07 AC 558 ms
168,448 KB
testcase_08 AC 616 ms
168,448 KB
testcase_09 AC 1,387 ms
168,320 KB
testcase_10 AC 26 ms
36,352 KB
testcase_11 AC 1,928 ms
168,576 KB
testcase_12 AC 1,326 ms
168,448 KB
testcase_13 AC 1,018 ms
168,576 KB
testcase_14 AC 864 ms
168,448 KB
testcase_15 AC 26 ms
36,352 KB
testcase_16 AC 26 ms
36,352 KB
testcase_17 AC 1,319 ms
168,576 KB
testcase_18 AC 1,995 ms
168,448 KB
testcase_19 AC 499 ms
168,448 KB
testcase_20 AC 1,872 ms
168,576 KB
testcase_21 AC 1,340 ms
168,448 KB
testcase_22 AC 572 ms
168,704 KB
testcase_23 AC 1,448 ms
168,576 KB
testcase_24 AC 26 ms
36,352 KB
testcase_25 TLE -
testcase_26 AC 814 ms
168,448 KB
testcase_27 AC 1,850 ms
168,448 KB
testcase_28 AC 900 ms
168,448 KB
testcase_29 AC 1,042 ms
168,448 KB
testcase_30 AC 26 ms
36,352 KB
testcase_31 AC 1,084 ms
168,576 KB
testcase_32 AC 26 ms
36,352 KB
testcase_33 AC 245 ms
168,448 KB
testcase_34 AC 306 ms
168,368 KB
testcase_35 AC 400 ms
168,448 KB
testcase_36 AC 1,787 ms
168,448 KB
testcase_37 AC 1,755 ms
168,704 KB
testcase_38 AC 1,675 ms
168,448 KB
testcase_39 AC 26 ms
36,352 KB
testcase_40 AC 1,528 ms
168,448 KB
testcase_41 AC 1,583 ms
168,448 KB
testcase_42 AC 1,728 ms
168,576 KB
testcase_43 AC 1,779 ms
168,448 KB
testcase_44 AC 1,862 ms
168,448 KB
testcase_45 AC 1,936 ms
168,448 KB
testcase_46 AC 26 ms
36,352 KB
testcase_47 AC 636 ms
168,448 KB
testcase_48 AC 1,424 ms
168,320 KB
testcase_49 AC 1,676 ms
168,576 KB
testcase_50 AC 732 ms
168,320 KB
testcase_51 AC 1,439 ms
168,448 KB
testcase_52 AC 1,647 ms
168,448 KB
testcase_53 AC 1,471 ms
168,320 KB
testcase_54 AC 1,515 ms
168,448 KB
testcase_55 AC 1,600 ms
168,576 KB
testcase_56 AC 1,595 ms
168,576 KB
testcase_57 AC 1,796 ms
168,448 KB
testcase_58 AC 1,583 ms
168,448 KB
testcase_59 AC 1,582 ms
168,448 KB
testcase_60 AC 1,019 ms
168,448 KB
testcase_61 AC 1,552 ms
168,448 KB
testcase_62 AC 1,391 ms
168,448 KB
testcase_63 AC 1,359 ms
168,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i,a,b) for (int i=(int)(a);i<(int)(b);i++)

int main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);

    
	const int M = 13;
    const int X = 800000 * M;
    const int Y = X * M * 2 + 1;
    const int H = X * M;
    bitset<Y> dp;
    int N;
    cin >> N;
    if (N >= 26){
    	cout << "0\n";
    	return 0;
    }
    rep(i, 0, N){
        int a;
        cin >> a;
        a += X;
        dp = (dp | (dp << a) | (dp >> a));
        dp[a + H] = true;
        dp[H - a] = true;
    }
    rep(i, 0, 1 << 30){
        if (dp[i + H] | dp[H - i]){
            cout << i << "\n";
            break;
        }
    }
}
0