Submission #1336474


Source Code Expand

// Copyright 2017 wu_qing
#include <cstdio>
#include <bitset>
#include <algorithm>
const int N = 5e3 + 10, M = N * N;
std::bitset<M> b;
int n, k, t, l, r, cnt, a[N];
inline bool check(int x) {
    b.reset();
    b[0] = 1;
    for (int i = 1; i <= cnt; i++) {
        if (i == x) continue;
        b |= b << a[i];
    }
    for (int i = k - a[x]; i < k; i++)
        if (b[i])
            return true;
    return false;
}
int main() {
    scanf("%d%d", &n, &k);
    for (int i = 1; i <= n; i++) {
        scanf("%d", &t);
        if (t <= k)
            a[++cnt] = t;
    }
    std::sort(a + 1, a + cnt + 1);
    l = 0;
    r = cnt;
    while (l < r) {
        int m = (l + r) / 2;
        if (check(m + 1))
            r = m;
        else
            l = m + 1;
    }
    printf("%d\n", r);
    return 0;
}

Submission Info

Submission Time
Task D - No Need
User wu_qing
Language C++14 (GCC 5.4.1)
Score 0
Code Size 846 Byte
Status TLE
Exec Time 2104 ms
Memory 9344 KB

Compile Error

./Main.cpp: In function ‘int main()’:
./Main.cpp:21:26: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
     scanf("%d%d", &n, &k);
                          ^
./Main.cpp:23:24: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
         scanf("%d", &t);
                        ^

Judge Result

Set Name Sample Subtask All
Score / Max Score 0 / 0 0 / 300 0 / 300
Status
AC × 3
AC × 20
TLE × 6
AC × 31
TLE × 20
Set Name Test Cases
Sample 0_000.txt, 0_001.txt, 0_002.txt
Subtask 0_000.txt, 0_001.txt, 0_002.txt, 1_003.txt, 1_004.txt, 1_005.txt, 1_006.txt, 1_007.txt, 1_008.txt, 1_009.txt, 1_010.txt, 1_011.txt, 1_012.txt, 1_013.txt, 1_014.txt, 1_015.txt, 1_016.txt, 1_017.txt, 1_018.txt, 1_019.txt, 1_020.txt, 1_021.txt, 1_022.txt, 1_023.txt, 1_024.txt, 1_025.txt
All 0_000.txt, 0_001.txt, 0_002.txt, 1_003.txt, 1_004.txt, 1_005.txt, 1_006.txt, 1_007.txt, 1_008.txt, 1_009.txt, 1_010.txt, 1_011.txt, 1_012.txt, 1_013.txt, 1_014.txt, 1_015.txt, 1_016.txt, 1_017.txt, 1_018.txt, 1_019.txt, 1_020.txt, 1_021.txt, 1_022.txt, 1_023.txt, 1_024.txt, 1_025.txt, 2_026.txt, 2_027.txt, 2_028.txt, 2_029.txt, 2_030.txt, 2_031.txt, 2_032.txt, 2_033.txt, 2_034.txt, 2_035.txt, 2_036.txt, 2_037.txt, 2_038.txt, 2_039.txt, 2_040.txt, 2_041.txt, 2_042.txt, 2_043.txt, 2_044.txt, 2_045.txt, 2_046.txt, 2_047.txt, 2_048.txt, 2_049.txt, 2_050.txt
Case Name Status Exec Time Memory
0_000.txt AC 9 ms 9344 KB
0_001.txt AC 14 ms 9344 KB
0_002.txt AC 19 ms 9344 KB
1_003.txt AC 2 ms 3200 KB
1_004.txt AC 1 ms 128 KB
1_005.txt AC 2 ms 3200 KB
1_006.txt AC 55 ms 9344 KB
1_007.txt AC 72 ms 9344 KB
1_008.txt TLE 2104 ms 9344 KB
1_009.txt TLE 2103 ms 9344 KB
1_010.txt AC 1 ms 128 KB
1_011.txt AC 1 ms 128 KB
1_012.txt TLE 2104 ms 9344 KB
1_013.txt AC 1 ms 128 KB
1_014.txt AC 2 ms 3200 KB
1_015.txt TLE 2104 ms 9344 KB
1_016.txt AC 31 ms 9344 KB
1_017.txt AC 44 ms 9344 KB
1_018.txt AC 34 ms 9344 KB
1_019.txt AC 30 ms 9344 KB
1_020.txt TLE 2104 ms 9344 KB
1_021.txt TLE 2104 ms 9344 KB
1_022.txt AC 1100 ms 9344 KB
1_023.txt AC 865 ms 9344 KB
1_024.txt AC 1905 ms 9344 KB
1_025.txt AC 1794 ms 9344 KB
2_026.txt AC 2 ms 3200 KB
2_027.txt AC 98 ms 9344 KB
2_028.txt AC 115 ms 9344 KB
2_029.txt TLE 2104 ms 9344 KB
2_030.txt TLE 2104 ms 9344 KB
2_031.txt AC 1 ms 128 KB
2_032.txt AC 1 ms 128 KB
2_033.txt TLE 2104 ms 9344 KB
2_034.txt AC 1 ms 128 KB
2_035.txt AC 2 ms 3200 KB
2_036.txt TLE 2104 ms 9344 KB
2_037.txt AC 43 ms 9344 KB
2_038.txt AC 61 ms 9344 KB
2_039.txt AC 47 ms 9344 KB
2_040.txt AC 44 ms 9344 KB
2_041.txt TLE 2104 ms 9344 KB
2_042.txt TLE 2104 ms 9344 KB
2_043.txt TLE 2104 ms 9344 KB
2_044.txt TLE 2104 ms 9344 KB
2_045.txt TLE 2104 ms 9344 KB
2_046.txt TLE 2104 ms 9344 KB
2_047.txt TLE 2104 ms 9344 KB
2_048.txt TLE 2104 ms 9344 KB
2_049.txt TLE 2104 ms 9344 KB
2_050.txt TLE 2104 ms 9344 KB