1546. 和为目标值且不重叠的非空子数组的最大数目-贪心算法

1546. 和为目标值且不重叠的非空子数组的最大数目

给你一个数组 nums 和一个整数 target 。

请你返回 非空不重叠 子数组的最大数目,且每个子数组中数字和都为 target 。

示例 1:

输入:nums = [1,1,1,1,1], target = 2
输出:2
解释:总共有 2 个不重叠子数组(加粗数字表示) [1,1,1,1,1] ,它们的和为目标值 2 。

示例 2:

输入:nums = [-1,3,5,1,4,2,-9], target = 6
输出:2
解释:总共有 3 个子数组和为 6 。
([5,1], [4,2], [3,5,1,4,2,-9]) 但只有前 2 个是不重叠的。

示例 3:

输入:nums = [-2,6,6,3,5,4,1,2,8], target = 10
输出:3

示例 4:

输入:nums = [0,0,0], target = 0
输出:3


#define size 100
struct hash{
    int presum;
  
    struct hash *next;

};


void add_hash( struct hash *h,int presum){
     struct hash *p=( struct hash *)malloc(sizeof(struct hash));
     p->presum=presum;
     p->next=h->next;
     h->next=p;
}





int maxNonOverlapping(int* nums, int numsSize, int target){
    struct hash *h=(struct hash *)malloc(sizeof(struct hash)*size);
    for(int i=0;i<size;i++){
        (h+i)->next=NULL;
    }
    int r[1000];
   
    int rsize;
    int i=0;
   int count=0;
    

   while(i<numsSize){
       rsize=0;
       r[rsize++]=0;
       int sum=0;
       while(i<numsSize){
           sum=sum+nums[i];
           int rz=0;
           for(int k=0;k<rsize;k++){

               if(r[k]==sum-target){
                   count++;
                   rz=1;
                   break;
               }  
           }
           if(rz==1){
                
                break;
           }
           else{
                r[rsize++]=sum;
           }
             i++;
                
       }
       i++;
     
   }

    return count;






}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值