首页 > 代码库 > HW7.17
HW7.17
1 import java.util.Scanner; 2 3 public class Solution 4 { 5 public static void main(String[] args) 6 { 7 Scanner input = new Scanner(System.in); 8 9 int n = input.nextInt();10 int limit = input.nextInt();11 12 int[][] borrowers = new int[n][n];13 14 for(int i = 0; i < n; i++)15 {16 borrowers[i][i] = input.nextInt();17 int volume = input.nextInt();18 int[] temp = new int[volume * 2];19 for(int j = 0; j < temp.length; j++)20 temp[j] = input.nextInt();21 for(int j = 1; j < temp.length; j += 2)22 borrowers[i][temp[j - 1]] = temp[j];23 }24 25 boolean existChange = false;26 while(true)27 {28 existChange = false;29 for(int i = 0; i < n; i++)30 {31 int sum = 0;32 for(int j = 0; j < n; j++)33 sum += borrowers[i][j];34 if(sum < limit)35 {36 System.out.println("Unsafe Bank -- " + i);37 existChange = true;38 for(int j = 0; j < n; j++)39 if(j != i)40 borrowers[j][i] = 0;41 }42 }43 if(existChange == false)44 break;45 }46 }47 }
HW7.17
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。