解题思路:
注意事项:
参考代码:
import java.util.*; import java.math.*; public class Main{ public static void main(String[] args){ Scanner sc=new Scanner(System.in); int m=sc.nextInt(); int n=sc.nextInt(); int[] arr=new int[n]; for(int i=0;i<n;i++){ arr[i]=sc.nextInt(); } int count=0; Arrays.sort(arr); int first=0,last=n-1; while(first<last){ if(arr[first]+arr[last]<=m){ first++; last--; count++; } else{ last--; count++; } if(first==last){ count++; break; } } System.out.println(count); } }
0.0分
0 人评分
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:512 |
2005年春浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:672 |
IP判断 (C语言代码)浏览:820 |
【计算两点间的距离】 (C语言代码)浏览:1522 |
sizeof的大作用 (C语言代码)浏览:1593 |
C语言训练-自守数问题 (C语言代码)浏览:798 |
小O的乘积 (C++代码)浏览:545 |
C语言程序设计教程(第三版)课后习题10.2 (C语言代码)浏览:1288 |
C语言程序设计教程(第三版)课后习题3.7 (C语言代码)浏览:1302 |
C语言程序设计教程(第三版)课后习题5.7 (C语言代码)浏览:607 |