Leetcode455.分发饼干

Leetcode455.分发饼干,第1张

‘’‘java
import java.util.*;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int a = sc.nextInt();
int b = sc.nextInt();
int[] g = new int[a];
int[] s = new int[b];
for(int i = 0; i < a; i++) {
g[i] = sc.nextInt();
}
for(int i = 0; i < b; i++) {
s[i] = sc.nextInt();
}
Arrays.sort(g);
Arrays.sort(s);
int count = 0;
int n = 0;
for(int i = 0;i
for(int j = n;j
n++;
if(g[i]<=s[j]){
count++;
break;
}
}
}
System.out.println(count);
}
}
‘’’

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/883514.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-14
下一篇 2022-05-14

发表评论

登录后才能评论

评论列表(0条)

保存