当前位置:网站首页>Leetcode daily question (2212. maximum points in an archery competition)
Leetcode daily question (2212. maximum points in an archery competition)
2022-07-03 09:33:00 【wangjun861205】
Alice and Bob are opponents in an archery competition. The competition has set the following rules:
Alice first shoots numArrows arrows and then Bob shoots numArrows arrows.
The points are then calculated as follows:
The target has integer scoring sections ranging from 0 to 11 inclusive.
For each section of the target with score k (in between 0 to 11), say Alice and Bob have shot ak and bk arrows on that section respectively. If ak >= bk, then Alice takes k points. If ak < bk, then Bob takes k points.
However, if ak == bk == 0, then nobody takes k points.
For example, if Alice and Bob both shot 2 arrows on the section with score 11, then Alice takes 11 points. On the other hand, if Alice shot 0 arrows on the section with score 11 and Bob shot 2 arrows on that same section, then Bob takes 11 points.
You are given the integer numArrows and an integer array aliceArrows of size 12, which represents the number of arrows Alice shot on each scoring section from 0 to 11. Now, Bob wants to maximize the total number of points he can obtain.
Return the array bobArrows which represents the number of arrows Bob shot on each scoring section from 0 to 11. The sum of the values in bobArrows should equal numArrows.
If there are multiple ways for Bob to earn the maximum total points, return any one of them.
Example 1:

Input: numArrows = 9, aliceArrows = [1,1,0,1,0,0,2,1,0,1,2,0]
Output: [0,0,0,0,1,1,0,0,1,2,3,1]
Explanation: The table above shows how the competition is scored.
Bob earns a total point of 4 + 5 + 8 + 9 + 10 + 11 = 47.
It can be shown that Bob cannot obtain a score higher than 47 points.
Example 2:
[ Failed to transfer the external chain picture , The origin station may have anti-theft chain mechanism , It is suggested to save the pictures and upload them directly (img-NXbpXyi5-1656207148005)(https://assets.leetcode.com/uploads/2022/02/24/ex2new.jpg)]
Input: numArrows = 3, aliceArrows = [0,0,1,0,0,0,0,0,0,0,0,2]
Output: [0,0,0,0,0,0,0,0,1,1,1,0]
Explanation: The table above shows how the competition is scored.
Bob earns a total point of 8 + 9 + 10 = 27.
It can be shown that Bob cannot obtain a score higher than 27 points.
Constraints:
- 1 <= numArrows <= 105
- aliceArrows.length == bobArrows.length == 12
- 0 <= aliceArrows[i], bobArrows[i] <= numArrows
- sum(aliceArrows[i]) == numArrows
For each of these score section, bob You can choose the pay ratio alice The price of one more arrow to get this score , Or skip this one directly score section
use std::collections::HashMap;
impl Solution {
fn dp(
num_arrows: i32,
alice_arrows: &Vec<i32>,
score_level: usize,
cache: &mut HashMap<(usize, i32), (Vec<i32>, i32)>,
) -> (Vec<i32>, i32) {
let alice = alice_arrows[score_level];
if score_level == 11 {
return (
vec![num_arrows],
if num_arrows <= alice {
0
} else {
score_level as i32
},
);
}
if num_arrows <= alice {
let (mut next_state, next_score) = if let Some((l, s)) =
cache.get(&(score_level + 1, num_arrows))
{
let state = l.clone();
(state.clone(), *s)
} else {
let (state, score) = Solution::dp(num_arrows, alice_arrows, score_level + 1, cache);
(state, score)
};
next_state.insert(0, 0);
cache.insert((score_level, num_arrows), (next_state.clone(), next_score));
return (next_state, next_score);
}
let (take_state, take_score) = if let Some((next_state, next_score)) =
cache.get(&(score_level + 1, num_arrows - alice - 1))
{
let mut state = next_state.clone();
state.insert(0, alice + 1);
(state, *next_score + score_level as i32)
} else {
let (mut next_state, mut next_score) =
Solution::dp(num_arrows - alice - 1, alice_arrows, score_level + 1, cache);
next_state.insert(0, alice + 1);
next_score += score_level as i32;
(next_state, next_score)
};
let (pass_state, pass_score) =
if let Some((next_state, next_score)) = cache.get(&(score_level + 1, num_arrows)) {
let mut next_state = next_state.clone();
next_state.insert(0, 0);
(next_state, *next_score)
} else {
let (mut next_state, score) =
Solution::dp(num_arrows, alice_arrows, score_level + 1, cache);
next_state.insert(0, 0);
(next_state, score)
};
if take_score > pass_score {
cache.insert((score_level, num_arrows), (take_state.clone(), take_score));
return (take_state, take_score);
}
cache.insert((score_level, num_arrows), (pass_state.clone(), pass_score));
(pass_state, pass_score)
}
pub fn maximum_bob_points(num_arrows: i32, alice_arrows: Vec<i32>) -> Vec<i32> {
let (state, _) = Solution::dp(num_arrows, &alice_arrows, 0, &mut HashMap::new());
state
}
}
边栏推荐
- Equality judgment of long type
- Overview of image restoration methods -- paper notes
- Crawler career from scratch (I): crawl the photos of my little sister ① (the website has been disabled)
- PolyWorks script development learning notes (I) - script development environment
- 基于opencv实现桌面图标识别
- Crawler career from scratch (3): crawl the photos of my little sister ③ (the website has been disabled)
- NPM install installation dependency package error reporting solution
- Nodemcu-esp8266 development (vscode+platformio+arduino framework): Part 2 --blinker_ Hello_ WiFi (lighting technology - Mobile App control routine)
- ERROR: certificate common name “*.” doesn’t match requested ho
- [kotlin learning] operator overloading and other conventions -- overloading the conventions of arithmetic operators, comparison operators, sets and intervals
猜你喜欢

Jenkins learning (II) -- setting up Chinese

CATIA automation object architecture - detailed explanation of application objects (I) document/settingcontrollers

Solve the problem of disordered code in vscode development, output Chinese and open source code

Arduino handles JSON data, arduinojson assistant

Vscode编辑器右键没有Open In Default Browser选项

Spark 概述

Spark overview

Solve editor MD uploads pictures and cannot get the picture address
![[point cloud processing paper crazy reading frontier version 11] - unsupervised point cloud pre training via occlusion completion](/img/76/b92fe4549cacba15c113993a07abb8.png)
[point cloud processing paper crazy reading frontier version 11] - unsupervised point cloud pre training via occlusion completion

图像修复方法研究综述----论文笔记
随机推荐
CATIA automation object architecture - detailed explanation of application objects (I) document/settingcontrollers
LeetCode每日一题(1362. Closest Divisors)
1922. Count Good Numbers
WARNING: You are using pip ; however. Later, upgrade PIP failed, modulenotfounderror: no module named 'pip‘
IDEA 中使用 Hudi
Jestson Nano自定义根文件系统创建(支持NVIDIA图形库的最小根文件系统)
Please tell me how to set vscode
LeetCode每日一题(2109. Adding Spaces to a String)
npm install安装依赖包报错解决方法
Matlab dichotomy to find the optimal solution
Win10安装ELK
PolyWorks script development learning notes (4) - data import and alignment using file import
Global KYC service provider advance AI in vivo detection products have passed ISO international safety certification, and the product capability has reached a new level
Hudi 数据管理和存储概述
LeetCode每日一题(1300. Sum of Mutated Array Closest to Target)
Flask+supervisor installation realizes background process resident
[kotlin learning] classes, objects and interfaces - classes with non default construction methods or attributes, data classes and class delegates, object keywords
Arduino handles JSON data, arduinojson assistant
Common software open source protocols
CATIA automation object architecture - detailed explanation of application objects (III) systemservice