Submission #540951

#TimeUsernameProblemLanguageResultExecution timeMemory
540951vinnipuh01Longest beautiful sequence (IZhO17_subsequence)C++17
0 / 100
1 ms212 KiB
#include <iostream> #include <bits/stdc++.h> #include <cmath> #include <algorithm> #include <vector> #include <deque> #include <set> #include <stack> #include <string> #include <map> #include <queue> #define int long long using namespace std; const long long oo = 1000000000000000000; long long sum, ans = 0, mx = 0, mn = 1000000000, num, pos; /* ViHHiPuh (( `'-""``""-'` )) )-__-_.._-__-( / --- (o _ o) --- \ \ .-* ( .0. ) *-. / _'-. ,_ '=' _, .-'_ / `;#'#'# - #'#'#;` \ \_)) -----'#'----- ((_/ # --------- # '# ------- ------ #' /..-'# ------- #'-.\ _\...-\'# -- #'/-.../_ ((____)- '#' -(____)) cout << fixed << setprecision(6) << x; ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); freopen ( "sum.in", "r", stdin ) */ int n, a[ 100001 ], b[ 100001 ]; vector <int> v, vans; main () { ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); cin >> n; for ( int i = 0; i < n; i ++ ) cin >> a[ i ]; for ( int j = 0; j < n; j ++ ) cin >> b[ j ]; for ( int mask = 1; mask < ( 1 << n ); mask ++ ) { pos = -1; ans = num = 0; v.clear(); for ( int i = 0; i < n; i ++ ) { if ( mask & ( 1 << i ) ) { if ( pos == -1 ) { pos = i; } else { num ++; if ( __builtin_popcount( ( a[ i ] & a[ pos ] ) ) != b[ num ] ) { ans = 1; break; } pos = i; } v.push_back( i ); } } if ( !ans ) { if ( vans.size() < v.size() ) vans = v; } } cout << vans.size() << "\n"; for ( auto i : vans ) cout << i + 1 << " "; }

Compilation message (stderr)

subsequence.cpp:49:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
   49 | main () {
      | ^~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...