SRM 622 D2L3: Subsets, math, backtrack

Source: Internet
Author: User
Tags bitset

 

 

The number of non-1 elements in a set that meet the condition is very small. You can use backtracing and pruning to run quickly.

 

Code:

 

#include #include 
 
  #include 
  
   #include 
   
    #include 
    
     #include 
     
      #include 
      
       #include 
       
        #include 
        
         #include 
         
          #include 
          
           #include 
           
            #include 
            
             #include 
             
              #include
              #include 
               
                #include 
                
                 #include 
                 
                  #include 
                  
                   #include 
                   
                    #include 
                    
                     #include 
                     
                      using namespace std;#define CHECKTIME() printf(%.2lf, (double)clock() / CLOCKS_PER_SEC)typedef pair
                      
                        pii;typedef long long llong;typedef pair
                       
                         pll;#define mkp make_pair#define FOREACH(it, X) for(__typeof((X).begin()) it = (X).begin(); it != (X).end(); ++it)/*************** Program Begin **********************/class Subsets {public:vector 
                        
                          numbers;int ones_cnt;int res;int nextdiff[1005];void backtrack(int sum, int prod, int pos){// addint cur = numbers[pos];int next_sum = sum + cur;int next_prod = prod * cur;if (next_sum + ones_cnt > next_prod) {res += next_sum + ones_cnt - next_prod;if (pos + 1 < numbers.size()) {backtrack(next_sum, next_prod, pos + 1);}}// not addif (nextdiff[pos] < numbers.size()) {backtrack(sum, prod, nextdiff[pos]);}}int findSubset(vector 
                         
                           numbers) {sort(numbers.begin(), numbers.end());this->numbers = numbers;int n = numbers.size();for (int i = 0; i < n; i++) {nextdiff[i] = n;for (int j = i + 1; j < n; j++) {if (numbers[i] != numbers[j]) {nextdiff[i] = j;break;}}}ones_cnt = count(numbers.begin(), numbers.end(), 1);res = max(ones_cnt - 1, 0);if (ones_cnt < n) {backtrack(0, 1, ones_cnt);}return res;}};/************** Program End ************************/
                         
                        
                       
                      
                     
                    
                   
                  
                 
                
               
             
            
           
          
         
        
       
      
     
    
   
  
 


 

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.