Submission #944320

# Submission time Handle Problem Language Result Execution time Memory
944320 2024-03-12T14:45:40 Z bngybongybrd A Difficult(y) Choice (BOI21_books) C++17
0 / 100
1 ms 824 KB
#include <bits/stdc++.h>

#include "books.h"

using namespace std;

void solve(int N, int K, long long A, int S) {
    int diff[100005];

    if(skim(1)*3 > 2*A){impossible();}
    if(skim(N)*K < A){impossible();}
    for(int i = 1; i <= S; i++){diff[i-1] = skim(i);}
    int sum = 0;
    
    for(int i = 0; i < S; i++){
        sum = 0;
        sum += diff[i];
        for(int j = i+1; j < S; j++){
            for(int x = j+1; x < S; x++){
                sum += diff[j];
                sum += diff[x];
                if(sum >= A and sum <= 2*A){
                    answer({i, j, x});
                }
            }
        }
    }
    impossible();
}
# Verdict Execution time Memory Grader output
1 Runtime error 1 ms 820 KB Execution killed with signal 13
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 1 ms 824 KB Execution killed with signal 13
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 1 ms 824 KB Execution killed with signal 13
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 1 ms 824 KB Execution killed with signal 13
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 1 ms 824 KB Execution killed with signal 13
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 1 ms 824 KB Execution killed with signal 13
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 1 ms 824 KB Execution killed with signal 13
2 Halted 0 ms 0 KB -