답안 #863912

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
863912 2023-10-21T12:27:29 Z Rifal Cigle (COI21_cigle) C++14
0 / 100
1000 ms 348 KB
#include <bits/stdc++.h>
#include <fstream>
//#define endl '\n'
#define mod 1000000007
#define INF 900000000

using namespace std;
//ofstream fout("intel.out");
//ifstream fin("intel.in");

int main()
{
    ios_base::sync_with_stdio(0);cout.tie(0);cin.tie(0);
    int n; cin >> n; int arr[n];
    for(int i = 0; i < n; i++) { cin >> arr[i]; }
    int sol = 0;
    for(int i = 0; i < (1<<n); i++) {
        vector<int> v, v2;
        long long sum = 0;
        int ans = 0;
        for(int j = 0; j < n; j++) {
            if((i&(1<<j)) > 0) {
                v.push_back(arr[j]);
                sum += arr[j];
                if(!v2.empty() && v2.size() != 1 && j != n && (i&(1<<(j+1)) > 0 )) {
                    if(sum == v2.back()) ans++;
                    if(sum >= v2.back()) {
                        sum -= v2.back();
                        v2.pop_back();
                    }
                }
            }
            else {
                v2 = v;
                sum = arr[j];
                if(!v2.empty() && v2.size() != 1 && j != n && (i&(1<<(j+1)) > 0)) {
                    if(sum == v2.back()) ans++;
                    if(sum >= v2.back()) {
                        sum -= v2.back();
                        v2.pop_back();
                    }
                }
                v.clear(); v.push_back(arr[j]);
            }
        }
        sol = max(sol,ans);
    }
    cout << sol;
 return 0;
}

Compilation message

cigle.cpp: In function 'int main()':
cigle.cpp:25:77: warning: suggest parentheses around comparison in operand of '&' [-Wparentheses]
   25 |                 if(!v2.empty() && v2.size() != 1 && j != n && (i&(1<<(j+1)) > 0 )) {
      |                                                                  ~~~~~~~~~~~^~~
cigle.cpp:36:77: warning: suggest parentheses around comparison in operand of '&' [-Wparentheses]
   36 |                 if(!v2.empty() && v2.size() != 1 && j != n && (i&(1<<(j+1)) > 0)) {
      |                                                                  ~~~~~~~~~~~^~~
# 결과 실행 시간 메모리 Grader output
1 Correct 278 ms 348 KB Output is correct
2 Incorrect 271 ms 344 KB Output isn't correct
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 278 ms 348 KB Output is correct
2 Incorrect 271 ms 344 KB Output isn't correct
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1012 ms 348 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 278 ms 348 KB Output is correct
2 Incorrect 271 ms 344 KB Output isn't correct
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 278 ms 348 KB Output is correct
2 Incorrect 271 ms 344 KB Output isn't correct
3 Halted 0 ms 0 KB -