From ab4bd4b534caf9c2396f40ab33e097f3146084a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=BD=A9=E8=BE=95=E9=BE=99=E5=84=BF?= Date: Mon, 3 Jan 2022 23:09:17 +0800 Subject: [PATCH] =?UTF-8?q?=E5=91=A8=E8=B5=9B274?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../contest/y2022/m1/week/Solution274.java | 91 +++++++++++++++++++ 1 file changed, 91 insertions(+) create mode 100644 src/main/java/contest/y2022/m1/week/Solution274.java diff --git a/src/main/java/contest/y2022/m1/week/Solution274.java b/src/main/java/contest/y2022/m1/week/Solution274.java new file mode 100644 index 0000000..f732f0b --- /dev/null +++ b/src/main/java/contest/y2022/m1/week/Solution274.java @@ -0,0 +1,91 @@ +package contest.y2022.m1.week; + + +import java.util.Arrays; +import java.util.LinkedList; +import java.util.Queue; + +/** + * @description: + * @author: Administrator + * @date: 2021/8/22-10:29 + */ +public class Solution274 { + public static void main(String[] args) { + Solution274 solution = new Solution274(); + System.out.println(solution.maximumInvitations(new int[]{1,0,0,2,1,4,7,8,9,6,7,10,8})); + } + + public boolean checkString(String s) { + return s.indexOf('b') < 0 || (s.indexOf('b') > s.lastIndexOf('a')); + } + + public int numberOfBeams(String[] bank) { + int[] nums = new int[bank.length]; + for (int i = 0; i < bank.length; i++) { + for (int j = 0; j < bank[i].length(); j++) { + if (bank[i].charAt(j) == '1') { + nums[i]++; + } + } + } + int sum = 0; + int bef = -1; + for (int num : nums) { + if (num > 0) { + if (bef >= 0) { + sum += bef * num; + } + bef = num; + } + } + return sum; + } + + public boolean asteroidsDestroyed(int mass, int[] asteroids) { + Arrays.sort(asteroids); + long temp = mass; + for (int asteroid : asteroids) { + if (temp < asteroid) { + return false; + } + temp += asteroid; + } + return true; + } + + public int maximumInvitations(int[] favorite) { + int count = 0; + boolean[] uuse = new boolean[favorite.length]; + for (int i = 0; i < favorite.length; i++) { + if (uuse[i]) { + continue; + } + boolean[] use = new boolean[favorite.length]; + use[i] = true; + int start = i; + int index = i; + int temp = 2; + while (favorite[index] != i) { + if (favorite[favorite[index]] == index || favorite[favorite[index]] == start) { + use[favorite[index]] = true; + for (int j = 0; j < favorite.length; j++) { + if (use[j]) { + uuse[j] = true; + } + } + break; + } + if (use[favorite[index]]) { + temp = 0; + break; + } + temp++; + index = favorite[index]; + use[index] = true; + } + count = Math.max(count, temp); + } + return count; + } +}