結果

問題 No.473 和と積の和
ユーザー kuuso1kuuso1
提出日時 2016-12-23 04:11:24
言語 C#(csc)
(csc 3.9.0)
結果
TLE  
実行時間 -
コード長 2,398 bytes
コンパイル時間 2,013 ms
コンパイル使用メモリ 114,720 KB
実行使用メモリ 40,632 KB
最終ジャッジ日時 2024-05-09 13:26:37
合計ジャッジ時間 6,654 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
35,224 KB
testcase_01 AC 33 ms
19,840 KB
testcase_02 AC 31 ms
19,712 KB
testcase_03 TLE -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Text;

class TEST{
	static void Main(){
		Sol mySol =new Sol();
		mySol.Solve();
	}
}

class Sol{
	public void Solve(){
		
		HashSet<MSet> H = new HashSet<MSet>();
		var pp = new MSet();
		pp.Add(X);
		
		H.Add(pp);
		for(int i=1;i<N;i++){
			HashSet<MSet> nxt = new HashSet<MSet>();
			foreach(var p in H){
				for(int j=0;j<p.Count;j++){
					if(j>0 && p[j] == p[j-1]) continue;
					int k = p[j];
					for(int t=2;t*t<=k+1;t++){
						if((k+1)%t != 0) continue;
						var q = new MSet(p);
						q.Push(t-1,(k+1)/t-1,j);
						nxt.Add(q);
					}
				}
			}
			H = nxt;
		}
		
		Console.WriteLine(H.Count);
	}
	
	class MSet{
		public List<int> L;
		int hash;
		public int Count{
			get{ return L.Count;}
		}
		public MSet(IEnumerable<int> l){
			L = new List<int>(l);
			L.Sort();
			hash = L.Aggregate( (s,t) => s^t );
		}
		public MSet(){
			L = new List<int>();
			hash = 0;
		}
		public MSet(MSet p){
			L = new List<int>(p.L);
			hash = p.hash;
		}
		
		public int this[int idx]{
			get {return L[idx];}
		}
		public void Add(int x){
			L.Add(x);
			L.Sort();
			hash ^= x;
		}
		
		public void Push(int x,int y,int idx){
			L[idx] = x;
			L.Add(y);
			L.Sort();
		}
		
		public override bool Equals(System.Object obj){
			if(obj == null) return false;
			MSet p = (MSet) obj;
			if((System.Object) p == null ) return false;
			return chkEqual(p);
		}
		
		bool chkEqual(MSet p){
			if(p.Count != L.Count)return false;
			for(int i=0;i<L.Count;i++){
				if(p.L[i] != L[i]) return false;
			}
			return true;
		}
		
		public override int GetHashCode(){
			return hash;
		}
	
	
	}
	
	
	
	
	
	int N;
	int X;
	public Sol(){
		var d = ria();
		N = d[0]; X = d[1];
	}

	static String rs(){return Console.ReadLine();}
	static int ri(){return int.Parse(Console.ReadLine());}
	static long rl(){return long.Parse(Console.ReadLine());}
	static double rd(){return double.Parse(Console.ReadLine());}
	static String[] rsa(char sep=' '){return Console.ReadLine().Split(sep);}
	static int[] ria(char sep=' '){return Array.ConvertAll(Console.ReadLine().Split(sep),e=>int.Parse(e));}
	static long[] rla(char sep=' '){return Array.ConvertAll(Console.ReadLine().Split(sep),e=>long.Parse(e));}
	static double[] rda(char sep=' '){return Array.ConvertAll(Console.ReadLine().Split(sep),e=>double.Parse(e));}
}
0