Submission #167742

#TimeUsernameProblemLanguageResultExecution timeMemory
167742abilLongest beautiful sequence (IZhO17_subsequence)C++14
40 / 100
102 ms36856 KiB
#include <bits/stdc++.h> #define fr first #define sc second #define pb push_back #define mk make_pair #define all(s) s.begin(),s.end() //#define int long long using namespace std; const int N = (1e6 + 12); const int mod = (1e9 + 7); const int INF = (0x3f3f3f3f); int a[N], dp[N], path[N], k[N], bit[N], ind[N]; vector<int > vec[N]; main() { int n; scanf("%d", &n); for(int i = 1;i <= n; i++){ scanf("%d", &a[i]); vec[i].pb(i); } for(int i = 1;i <= n; i++){ scanf("%d", &k[i]); } if(n <= 5000){ vector<int > ans; for(int i = n;i >= 1; i--){ for(int j = i + 1;j <= n; j++){ if(vec[i].size() <= vec[j].size() && __builtin_popcount((a[i] & a[j])) == k[j]){ vec[i] = vec[j]; vec[i].pb(i); } } if(vec[i].size() > ans.size()){ ans = vec[i]; } } cout << ans.size() << endl; reverse(all(ans)); for(auto to : ans){ cout << to << " "; } return 0; } for(int i = 0;i < (1 << 8); i++){ bit[i] = __builtin_popcount(i); } for(int i = 1;i <= n; i++){ int mx = 1, id = 0; for(int j = 0;j < (1 << 8); j++){ if(bit[(j & a[i])] == k[i]){ if(dp[j] + 1 > mx){ mx = dp[j] + 1; id = ind[j]; } } } if(mx > dp[a[i]]){ dp[a[i]] = mx; path[i] = id; ind[a[i]] = i; } } int mx = 0, val; for(int i = 0; i < (1 << 8); i++){ if(dp[i] > mx){ mx = dp[i]; val = ind[i]; } } printf("%d\n", mx); vector<int > ans; while(val){ ans.pb(val); val = path[val]; } reverse(all(ans)); for(auto to : ans){ printf("%d ", to); } }

Compilation message (stderr)

subsequence.cpp:18:6: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
 main()
      ^
subsequence.cpp: In function 'int main()':
subsequence.cpp:21:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
  scanf("%d", &n);
  ~~~~~^~~~~~~~~~
subsequence.cpp:23:8: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   scanf("%d", &a[i]);
   ~~~~~^~~~~~~~~~~~~
subsequence.cpp:27:8: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   scanf("%d", &k[i]);
   ~~~~~^~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...