题目:给你一个整数数组 nums,请你找出并返回能被三整除的元素最大和。

  示例 1:

  输入:nums = [3,6,5,1,8]
  输出:18
  解释:选出数字 3, 6, 1 和 8,它们的和是 18(可被 3 整除的最大和)。

  这道题是第163周竞赛的一道题目,难度中等,边学别人的解题方法,边记录吧!

  

方案一、不妨设dp[i] 代表 选取的数字累加和 模3 = i 的数字和  

  假定nums[i] % 3 = 1 ,那么,和 前面选取的数字和模 3 = 2 的数相加,就可以模3为 0 ,表达起来就是 dp[0] = max(dp[0], nums[i] + dp[2])依次类推,只要不断更新 dp 数组即可,注意一点,更新的时候要保存上一个状态的值,避免后续更新的时候重复影响。

  

 #include <iostream>
#include <vector>
#include <algorithm>
using namespace std; int maxSumDivThree(vector<int>& nums) {
int dp[] = { , , };
int i;
cout << "┌───────┬───────┬───────┐" << endl;
for (i = ; i < nums.size(); i++)
{
//依次判断nums[i]
int mod = nums[i] % ;
int a = dp[( + - mod) % ];//保留上一步的值,避免后续相加影响
int b = dp[( + - mod) % ];
int c = dp[( + - mod) % ]; if (a||mod == ) dp[] = max(dp[], a + nums[i]);
if (b||mod == ) dp[] = max(dp[], b + nums[i]);
if (c||mod == ) dp[] = max(dp[], c + nums[i]);
cout << "│\t" << dp[] << "\t│\t" << dp[] << "\t│\t" << dp[] << "\t│" << endl;
if(i<nums.size()-)
cout << "├───────┼───────┼───────┤" << endl;
else
cout << "└───────┴───────┴───────┘" << endl;
} return dp[];
} vector<int> vc;
int main()
{
int n;
cin >> n;
vc.resize(n);
int i;
for (i = ; i < n; i++)
cin>>vc[i];
cout << endl;
cout << "能被3整除的最大和为:" <<maxSumDivThree(vc) << endl;
return ;
}

理解:(当然这是看的别人的想法,作者https://leetcode-cn.com/u/igamegum/

  先看下运行结果吧,就用上边的实例进行解释:

  

   1、a,b,c是干什么用的?

  a,b,c应该是保留上一步的值,a、b、c的取值如下:

  

  每次均记录了上一步的dp中的值,下一步在计算dp[0]时,dp[0]会发生变化,此时,在计算dp[1]时,用到的dp[0]不再是原始的dp[0],从而造成数据的不一致问题!

  2、if(b || mod == 1)中,为什么还要判断b的值?

  这里的b我理解的是,当它不为0的时候,不过mod值是不是1,我都需要去更新dp[1],因为存在mod是2,需要考虑(2+2)%3=1的情况,同样,mod为0,需要考虑(1+0)%3=1的情况;这里我们去掉试一试,看下结果:

  

  显然,当计算第4层时,数字1%3=1,此时,dp[0]只考虑了mod=0,所以dp[0]没有进行更新,但是数字1+dp[2]也可以构成模3余0的情况,并且和为15,显然比9大!!!

方案二、国外神代码,没解释,等待理解

 class Solution {
public:
int maxSumDivThree(vector<int>& A) {
vector<int> dp = {, INT_MIN, INT_MIN};
for (int a : A) {
vector<int> dp2 = {, , };
for (int i = ; i < ; ++i)
dp2[(i + a) % ] = max(dp[(i + a) % ], dp[i] + a);
dp = dp2;
}
return dp[];
}
};

理解了之后回来更新~~~

Leetcode 1262. 可被三整除的最大和的更多相关文章

  1. LeetCode 5365. 可被三整除的最大和 Greatest Sum Divisible by Three

    地址 https://www.acwing.com/solution/leetcode/content/6340/ 题目描述给你一个整数数组 nums,请你找出并返回能被三整除的元素最大和. 示例 : ...

  2. 【JavaScript】Leetcode每日一题-最大整除子集

    [JavaScript]Leetcode每日一题-最大整除子集 [题目描述] 给你一个由 无重复 正整数组成的集合 nums ,请你找出并返回其中最大的整除子集 answer ,子集中每一元素对(an ...

  3. [LeetCode] 3Sum Closest 最近三数之和

    Given an array S of n integers, find three integers in S such that the sum is closest to a given num ...

  4. LeetCode 15. 3Sum(三数之和)

    Given an array S of n integers, are there elements a, b, c in S such that a + b + c = 0? Find all un ...

  5. LeetCode第二天&第三天

    leetcode 第二天 2017年12月27日 4.(118)Pascal's Triangle JAVA class Solution { public List<List<Integ ...

  6. [LeetCode] Self Dividing Numbers 自整除数字

    A self-dividing number is a number that is divisible by every digit it contains. For example, 128 is ...

  7. [LeetCode] 259. 3Sum Smaller 三数之和较小值

    Given an array of n integers nums and a target, find the number of index triplets i, j, k with 0 < ...

  8. 【LeetCode】15、三数之和为0

    题目等级:3Sum(Medium) 题目描述: Given an array nums of n integers, are there elements a, b, c in nums such t ...

  9. 【LeetCode】15. 3Sum 三数之和

    作者: 负雪明烛 id: fuxuemingzhu 个人博客:http://fuxuemingzhu.cn/ 个人公众号:负雪明烛 本文关键词:3sum, 三数之和,题解,leetcode, 力扣,P ...

随机推荐

  1. Debian CentOS修改时区

    Debian修改时区: dpkg-reconfigure tzdata https://wiki.debian.org/TimeZoneChanges CentOS修改时区: timedatectl ...

  2. thinkphp3.2.3集成phpexcel1.8导出设置单元格合并

    1 到这里下载classes里面的文件 https://github.com/PHPOffice/PHPExcel 2 然后放到 thinkphp的vendor 新建一个文件夹 Phpexcel  然 ...

  3. SpringBoot 通过jjwt快速实现token授权

    A 10分钟了解JSON Web令牌(JWT)https://baijiahao.baidu.com/s?id=1608021814182894637&wfr=spider&for=p ...

  4. autocomplete.js 插件的使用遇到的bug

    1. Uncaught TypeError: Cannot read property 'toLowerCase' of undefined 股票信息缺少字段(默认为三个字段,缺少P字段) 2. Ca ...

  5. cin快读

    ios::sync_with_stdio(false); \\取消同步,cin,cout的速度就不慢了!!

  6. XSS相关Payload及Bypass的备忘录(上)

    翻译学习准备自用,同时分享给大家, 来自于: https://github.com/swisskyrepo/PayloadsAllTheThings/tree/master/XSS%20Injecti ...

  7. uni-app插件ColorUI步骤条

    1. uni-app插件ColorUI步骤条 1.1. 前言 uni-app就不介绍了,前面几篇已经有所介绍,不知道的可以翻看我前面几篇博客 ColorUI-uniApp是uni-app的一款ui组件 ...

  8. 【代码笔记】Web-CSS-CSS组合选择符

    一,效果图. 二,代码. <!DOCTYPE html> <html> <head> <meta charset="utf-8"> ...

  9. QT在Mac OS上编译运行初体验

    QT是一个跨平台的框架,支持PC端(Windows.Linux和Mac OS)以及移动端(Android和IOS),之前的开发大都在Windows或者Ubuntu上,考虑到项目多平台支持性,本文对Ma ...

  10. SqlServer数据库优化之索引、临时表

    问题:工作是查询一张500万多条数据的表时,查询总是很慢,于是进行优化. --查询表所有索引 use RYTreasureDB EXEC Sp_helpindex [RecordDrawScore] ...