Submission details
Task:Apple Division
Sender:aalto26aw_003
Submission time:2026-09-02 17:54:04 +0300
Language:C++ (C++20)
Status:READY
Result:
Test results
testverdicttime
#10.00 sdetails
#20.00 sdetails
#30.00 sdetails
#40.00 sdetails
#50.00 sdetails
#60.00 sdetails
#70.01 sdetails
#80.01 sdetails
#90.01 sdetails
#100.01 sdetails
#110.01 sdetails
#120.01 sdetails
#130.00 sdetails
#14ACCEPTED0.00 sdetails
#15ACCEPTED0.00 sdetails
#160.00 sdetails
#170.01 sdetails
#180.01 sdetails

Compiler report

input/code.cpp: In function 'long long int cal(long long int, long long int, long long int, const std::vector<long long int>&)':
input/code.cpp:36:13: warning: comparison of integer expressions of different signedness: 'const long long int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   36 |     if (idx >= wt.size()) return sum;
      |         ~~~~^~~~~~~~~~~~

Code

#include <bits/stdc++.h>

// int main() {
//     std::ios_base::sync_with_stdio(false);
//     std::cin.tie(nullptr);
//
//     long long n;
//     std::cin >> n;
//
//     long long sum = 0;
//     std::vector<long long> weights(n);
//     for (long long i = 0; i < n; i++) {
//         std::cin >> weights[i];
//         sum += weights[i];
//     }
//
//     const long long W = (sum + 1) / 2;
//
//     std::vector Matrix(W + 1,std::vector<long long>(n, 0));
//     for(int i = 1; i < n; i++){
//         for(int w = 1; w < W+1; w++){
//             if (weights[i - 1] > w) {
//                 Matrix[w][i] = Matrix[w][i-1];
//             } else {
//                 Matrix[w][i] = std::max(Matrix[w][i-1], Matrix[w-weights[i - 1]][i-1] + weights[i - 1]);
//             }
//         }
//     }
//
//     std::cout << std::abs(sum - 2 * Matrix[W][n - 1]) << std::endl;
//     return 0;
// }

long long cal(const long long idx, const long long W, const long long sum, const std::vector<long long> &wt) {
    if (sum > W) return 0;
    if (idx >= wt.size()) return sum;
    const long long a = cal(idx + 1, W, sum + wt[idx], wt);
    const long long b = cal(idx + 1, W, sum, wt);
    return std::min(std::abs(W - a), std::abs(W - b));
}

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

    long long n;
    std::cin >> n;

    long long sum = 0;
    std::vector<long long> weights(n);
    for (long long i = 0; i < n; i++) {
        std::cin >> weights[i];
        sum += weights[i];
    }

    const long long W = (sum + 1) / 2;

    std::cout << std::abs(sum - 2 * cal(0, W, 0, weights)) << std::endl;
    return 0;
}

Test details

Test 1

Verdict:

input
10
603 324 573 493 659 521 654 70...

correct output
2

user output
1542

Feedback: Incorrect character on line 1 col 1: expected "2", got "1542"

Test 2

Verdict:

input
10
952 775 292 702 859 719 65 943...

correct output
1

user output
715

Feedback: Incorrect character on line 1 col 1: expected "1", got "715"

Test 3

Verdict:

input
10
141 156 14 487 250 230 741 602...

correct output
2

user output
190

Feedback: Incorrect character on line 1 col 1: expected "2", got "190"

Test 4

Verdict:

input
10
963 359 731 826 599 931 40 86 ...

correct output
4

user output
660

Feedback: Incorrect character on line 1 col 1: expected "4", got "660"

Test 5

Verdict:

input
10
238 224 861 461 558 860 318 93...

correct output
2

user output
450

Feedback: Incorrect character on line 1 col 1: expected "2", got "450"

Test 6

Verdict:

input
10
193 848 70 53 864 886 374 31 2...

correct output
1

user output
715

Feedback: Incorrect character on line 1 col 1: expected "1", got "715"

Test 7

Verdict:

input
20
13048212 423374770 19874608 81...

correct output
8231

user output
422809091

Feedback: Incorrect character on line 1 col 1: expected "8231", got "422809091"

Test 8

Verdict:

input
20
314836307 815098885 922742346 ...

correct output
1188

user output
592830718

Feedback: Incorrect character on line 1 col 1: expected "1188", got "592830718"

Test 9

Verdict:

input
20
846261131 196958704 824235264 ...

correct output
11770

user output
869242086

Feedback: Incorrect character on line 1 col 1: expected "11770", got "869242086"

Test 10

Verdict:

input
20
92021619 792314463 937735495 8...

correct output
4453

user output
595455135

Feedback: Incorrect character on line 1 col 1: expected "4453", got "595455135"

Test 11

Verdict:

input
20
452747515 202201476 845758891 ...

correct output
4881

user output
256238899

Feedback: Incorrect character on line 1 col 1: expected "4881", got "256238899"

Test 12

Verdict:

input
20
934033764 747013925 113297529 ...

correct output
5482

user output
421891428

Feedback: Incorrect character on line 1 col 1: expected "5482", got "421891428"

Test 13

Verdict:

input
1
1000000000

correct output
1000000000

user output
0

Feedback: Incorrect character on line 1 col 1: expected "1000000000", got "0"

Test 14

Verdict: ACCEPTED

input
2
1 1

correct output
0

user output
0

Test 15

Verdict: ACCEPTED

input
1
1

correct output
1

user output
1

Test 16

Verdict:

input
5
934033764 2 7 4 1

correct output
934033750

user output
16

Feedback: Incorrect character on line 1 col 1: expected "934033750", got "16"

Test 17

Verdict:

input
20
934033764 747013925 113297529 ...

correct output
5483

user output
421891429

Feedback: Incorrect character on line 1 col 1: expected "5483", got "421891429"

Test 18

Verdict:

input
19
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

correct output
1

user output
19

Feedback: Incorrect character on line 1 col 2: expected "1", got "19"