답안 #1115208

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1115208 2024-11-20T08:41:38 Z Zflop Detecting Molecules (IOI16_molecules) C++14
0 / 100
1 ms 336 KB
#pragma once
#include <bits/stdc++.h>
#include <vector>
using namespace std;
const int NMAX = (int)1e3 * 2;

int dp[NMAX],from[NMAX];
std::vector<int> find_subset(int l, int u, std::vector<int> w) {
    dp[0] = 1;
    for (int i = 0; i < w.size();++i) {
        for (int j = u + 1; j >= 0;--j)
            if (dp[j]) {
                dp[j + w[i]] = 1;
                from[j] = i;
            }
    }
    vector<int>v;
    int este = 0;
    for (int i = u; i >= l;--i)
        if (dp[i]) {
            este = i;
            break;
        }
    v.push_back(este);
    while (from[v.back()]) {
        v.push_back(from[v.back()]);
    }
    return v;
}

Compilation message

molecules.cpp:1:9: warning: #pragma once in main file
    1 | #pragma once
      |         ^~~~
molecules.cpp: In function 'std::vector<int> find_subset(int, int, std::vector<int>)':
molecules.cpp:10:23: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   10 |     for (int i = 0; i < w.size();++i) {
      |                     ~~^~~~~~~~~~
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 336 KB sum of weights should be in [10..12] but it is 9
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 336 KB Integer 304 violates the range [0, 11]
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 336 KB sum of weights should be in [10..12] but it is 9
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 336 KB sum of weights should be in [10..12] but it is 9
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 336 KB sum of weights should be in [10..12] but it is 9
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 336 KB sum of weights should be in [10..12] but it is 9
2 Halted 0 ms 0 KB -