网易互娱第二题50%之后超时,实在没搞懂我为什么超时,半个小时写出来,改了一个小时还超时 思路就是拓扑排序 import java.util.*; public class Main { public static void main(String[] args) { Scanner in = new Scanner(System.in); int t = in.nextInt(); String[] strings = new String[t]; for(int y=0;y<t;y++){ ...