# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
863912 | 2023-10-21T12:27:29 Z | Rifal | Cigle (COI21_cigle) | C++14 | 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
# | Verdict | Execution time | Memory | 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 | - |
# | Verdict | Execution time | Memory | 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 | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Execution timed out | 1012 ms | 348 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | 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 | - |
# | Verdict | Execution time | Memory | 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 | - |