首先声明代码并没有AC,内存超了
但我对此无能为力,有没有哪位大神好心教一下怎么写
哈希,然后比较花瓣数组,这些应该都没问题才对。。唉。。
贴MLE代码
import java.util.*;public class POJ3349 { static int N = 1200007; public static class HashNode{ int[] num=null; HashNode next = null; } // hashlist[i]存储hash值为i的链表 static HashNode[] hashlist = new HashNode[1200010]; // 计算hash值 static int hashValue(int[] num){ int sum = 0; for(int i=0;i0){ for(int i=0;i