Submission #163489

#TimeUsernameProblemLanguageResultExecution timeMemory
163489tselmegkhBeautiful row (IZhO12_beauty)C++14
0 / 100
2 ms376 KiB
#include<bits/stdc++.h> using namespace std; vector<int> binary[33], trinary[33]; vector<int> a; int n; bool same[25], block[25]; int count(int x){ int res = 0; while(x > 0){ if(x % 3 == 1){ res++; } x /= 3; } return res; } int solve(int i, int mask, int last){ if(i == n)return 1; int ans = 0; if(i == 0){ for(int j = 0; j < n; j++){ int curmask = mask | (1 << j); ans += solve(i + 1, curmask, j); } }else{ int binaryones = __builtin_popcount(a[last]), trinaryones = count(a[last]); for(int j = 0; j < binary[binaryones].size(); j++){ int k = binary[binaryones][j]; if(mask & (1 << k))continue; int curmask = mask | (1 << k); ans += solve(i + 1, curmask, k); } for(int j = 0; j < trinary[trinaryones].size(); j++){ int k = trinary[trinaryones][j]; if(mask & (1 << k))continue; int curmask = mask | (1 << k); if(!((binaryones == trinaryones) && same[k]))ans += solve(i + 1, curmask, k); } } return ans; } int main(){ cin >> n; a.resize(n); for(int i = 0; i < n; i++){ cin >> a[i]; int cnt3 = count(a[i]), cnt2 = __builtin_popcount(a[i]); binary[cnt2].push_back(i); trinary[cnt3].push_back(i); if(cnt2 == cnt3){ same[i] = 1; } } cout << solve(0, 0, -1) << '\n'; }

Compilation message (stderr)

beauty.cpp: In function 'int solve(int, int, int)':
beauty.cpp:31:20: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
   for(int j = 0; j < binary[binaryones].size(); j++){
                  ~~^~~~~~~~~~~~~~~~~~~~~~~~~~~
beauty.cpp:37:20: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
   for(int j = 0; j < trinary[trinaryones].size(); j++){
                  ~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...