最新要闻

广告

手机

iphone11大小尺寸是多少?苹果iPhone11和iPhone13的区别是什么?

iphone11大小尺寸是多少?苹果iPhone11和iPhone13的区别是什么?

警方通报辅警执法直播中被撞飞:犯罪嫌疑人已投案

警方通报辅警执法直播中被撞飞:犯罪嫌疑人已投案

家电

最新资讯:题目 3158: 蓝桥杯2023年第十四届省赛真题-三国游戏(贪心)

来源:博客园


【资料图】

题目描述

小蓝正在玩一款游戏。游戏中魏蜀吴三个国家各自拥有一定数量的士兵X, Y, Z (一开始可以认为都为 0 )。游戏有 n 个可能会发生的事件,每个事件之间相互独立且最多只会发生一次,当第 i 个事件发生时会分别让 X, Y, Z 增加Ai , Bi ,Ci 。当游戏结束时 (所有事件的发生与否已经确定),如果 X, Y, Z 的其中一个大于另外两个之和,我们认为其获胜。例如,当 X > Y + Z 时,我们认为魏国获胜。小蓝想知道游戏结束时如果有其中一个国家获胜,最多发生了多少个事件?如果不存在任何能让某国获胜的情况,请输出 −1 。

输入格式

输入的第一行包含一个整数 n 。第二行包含 n 个整数表示 Ai,相邻整数之间使用一个空格分隔。第三行包含 n 个整数表示 Bi,相邻整数之间使用一个空格分隔。第四行包含 n 个整数表示 Ci,相邻整数之间使用一个空格分隔。

输出格式

输出一行包含一个整数表示答案。样例输入31 2 22 3 21 0 7样例输出2

解答

1.解题思路是,使用贪心思想选出三个国家各自获胜的最大事件数,取其最大作为答案;那么如何算出一个国家士兵应该经历哪些事件并满足大于另外两国呢,同样使用贪心算法2.我们使用一个类来存储一个事件,这个事件有abc三个属性,分别对应题目对三个国家兵力的提升

static class node {        long a, b, c;        public node(long a, long b, long c) {            this.a = a;            this.b = b;            this.c = c;        }    }

那么我们输入数据时需要注意一点,它的每一行都是对一个国家的影响,也就是对于事件i,输入的第一行数据是事件i的a,第二行数据才是事件i的b

node[] events = new node[n];    for (int i = 0; i < n; i++) events[i] = new node(sc.nextInt(), 0, 0);     for (int i = 0; i < n; i++) events[i].b = sc.nextInt();    for (int i = 0; i < n; i++) events[i].c = sc.nextInt();

3.我们对事件进行排序,排序规则根据我们的需求而定,我们需要得出每个国家获胜的事件数,就把事件排序为对那个国家提升的兵力最多的事件最靠前比如1 2 22 3 21 0 7事件i1对第一个国家提升量为-2,而i2提升量为-1,i3提升量为-7,则排序为i2i1i3事件i1对第二个国家提升量为0,而i2提升量为1,i3提升量为-7,则排序为i2i1i3事件i1对第三个国家提升量为-2,而i2提升量为-5,i3提升量为3,则排序为i3i1i2

Arrays.sort(events, (o1, o2) -> o2.a - o2.b - o2.c + o1.b + o1.c - o1.a > 0 ? 1 : -1);  Arrays.sort(events, (o1, o2) -> o2.b - o2.a - o2.c + o1.a + o1.c - o1.b > 0 ? 1 : -1);  Arrays.sort(events, (o1, o2) -> o2.c - o2.a - o2.b + o1.a + o1.b - o1.c > 0 ? 1 : -1);

排序完之后使用排序后的顺序算出对应国家在最大优势的情况下可以经过几个事件并满足兵力大于其他两国

Arrays.sort(events, (o1, o2) -> o2.a - o2.b - o2.c + o1.b + o1.c - o1.a > 0 ? 1 : -1);  ans = Math.max(ans, f(events, 0));  Arrays.sort(events, (o1, o2) -> o2.b - o2.a - o2.c + o1.a + o1.c - o1.b > 0 ? 1 : -1);  ans = Math.max(ans, f(events, 1));  Arrays.sort(events, (o1, o2) -> o2.c - o2.a - o2.b + o1.a + o1.b - o1.c > 0 ? 1 : -1);  ans = Math.max(ans, f(events, 2));

这里使用一个数字标记当前优势国,而且如果你不能在第一个事件就大于其他两国,那么后面就更不可能了,所以不满足a>b+c时就直接break并返回事件数

private static long f(node[] events, int cur) {        long a = 0, b = 0, c = 0;        long res = 0;        for (int i = 0; i < events.length; i++) {            a += events[i].a;            b += events[i].b;            c += events[i].c;            if (cur == 0) {                if (a > b + c) {                    res = i + 1;                } else {                    break;                }            } else if (cur == 1) {                if (b > a + c) {                    res = i + 1;                } else {                    break;                }            } else {                if (c > b + a) {                    res = i + 1;                } else {                    break;                }            }        }        return res;    }

4.最后打印答案,如果事件数为0,说明没有国家能够满足a>b+c的条件打印-1即可

System.out.println(ans == 0 ? -1 : ans);

完整代码

import java.util.Arrays;import java.util.Scanner;public class Main {    public static void main(String[] args) {        Scanner sc = new Scanner(System.in);        int n = sc.nextInt();        long ans = 0;        node[] events = new node[n];        for (int i = 0; i < n; i++) events[i] = new node(sc.nextInt(), 0, 0);        for (int i = 0; i < n; i++) events[i].b = sc.nextInt();        for (int i = 0; i < n; i++) events[i].c = sc.nextInt();        Arrays.sort(events, (o1, o2) -> o2.a - o2.b - o2.c + o1.b + o1.c - o1.a > 0 ? 1 : -1);        ans = Math.max(ans, f(events, 0));        Arrays.sort(events, (o1, o2) -> o2.b - o2.a - o2.c + o1.a + o1.c - o1.b > 0 ? 1 : -1);        ans = Math.max(ans, f(events, 1));        Arrays.sort(events, (o1, o2) -> o2.c - o2.a - o2.b + o1.a + o1.b - o1.c > 0 ? 1 : -1);        ans = Math.max(ans, f(events, 2));        System.out.println(ans == 0 ? -1 : ans);    }    private static long f(node[] events, int cur) {        long a = 0, b = 0, c = 0;        long res = 0;        for (int i = 0; i < events.length; i++) {            a += events[i].a;            b += events[i].b;            c += events[i].c;            if (cur == 0) {                if (a > b + c) {                    res = i + 1;                } else {                    break;                }            } else if (cur == 1) {                if (b > a + c) {                    res = i + 1;                } else {                    break;                }            } else {                if (c > b + a) {                    res = i + 1;                } else {                    break;                }            }        }        return res;    }    static class node {        long a, b, c;        public node(long a, long b, long c) {            this.a = a;            this.b = b;            this.c = c;        }    }}

关键词: