题目忘了拍了。。。大家找一找网上应该有的 第一题暴力O(N^2)超时,只过了40%,蹲一波大佬们的AC代码。 第二题二维dp过了88%,显示,WA不知道哪里有问题,代码如下: public class Main{ public static void main(String[] args){ Scanner sc = new Scanner(System.in); int n = Integer.parseInt(sc.nextLine()); int m = Integer.parseInt(sc.nextLine()); ...