博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Leetcode 1005. Maximize Sum Of Array After K Negations
阅读量:4186 次
发布时间:2019-05-26

本文共 1292 字,大约阅读时间需要 4 分钟。

Given an array A of integers, we must modify the array in the following way: we choose an i and replace A[i] with -A[i], and we repeat this process K times in total.  (We may choose the same index i multiple times.)

Return the largest possible sum of the array after modifying it in this way.

 

Example 1:

Input: A = [4,2,3], K = 1Output: 5Explanation: Choose indices (1,) and A becomes [4,-2,3].

Example 2:

Input: A = [3,-1,0,2], K = 3Output: 6Explanation: Choose indices (1, 2, 2) and A becomes [3,1,0,2].

Example 3:

Input: A = [2,-3,-1,5,-4], K = 2Output: 13Explanation: Choose indices (1, 4) and A becomes [2,3,-1,5,4].

 

Note:

  1. 1 <= A.length <= 10000
  2. 1 <= K <= 10000
  3. -100 <= A[i] <= 100

 

-----------------------------------------------------------------

非常简单,居然能wa一次,不应该啊。。。自己想一下,确保脑子里没有bug

class Solution:    def largestSumAfterKNegations(self, A, K):        sa = sorted(A)        i = 0        for i in range(K):            if (sa[i] < 0):                sa[i] = -sa[i]            else:                min_val = min(sa)                res = sum(sa)                delta = min_val                for j in range(K - i):                    res -= 2*delta                    delta = -delta                return res        return sum(sa)s = Solution()print(s.largestSumAfterKNegations([4,2,3], 1))

 

转载地址:http://itfoi.baihongyu.com/

你可能感兴趣的文章
Java基础 字符、字符串
查看>>
堆,栈,队列,串
查看>>
Java集合框架List,Map,Set等全面介绍
查看>>
流式大数据处理的三种框架:Storm,Spark和Samza
查看>>
Cypher查询语言--Neo4j中的SQL
查看>>
ha----双机集群(HA)系统简称
查看>>
Linux 高可用(HA)集群之keepalived详解
查看>>
neo4j初次使用学习简单操作-cypher语言使用
查看>>
hadoop和关系型数据库系统比较
查看>>
Hadoop、Spark等5种大数据框架对比
查看>>
Neo4J简介与安装
查看>>
HBase条件查询(多条件查询)
查看>>
云服务
查看>>
hive的介绍
查看>>
U是什么
查看>>
关系型数据库与NOSQL
查看>>
Sqoop是什么
查看>>
宽带是多少
查看>>
Hadoop和Spark的异同
查看>>
avro 是什么
查看>>