結果
| 問題 | 
                            No.10 +か×か
                             | 
                    
| コンテスト | |
| ユーザー | 
                             iicafiaxus
                         | 
                    
| 提出日時 | 2018-12-07 21:55:26 | 
| 言語 | D  (dmd 2.109.1)  | 
                    
| 結果 | 
                             
                                MLE
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 1,188 bytes | 
| コンパイル時間 | 759 ms | 
| コンパイル使用メモリ | 126,464 KB | 
| 実行使用メモリ | 657,164 KB | 
| 最終ジャッジ日時 | 2024-06-13 02:03:46 | 
| 合計ジャッジ時間 | 7,702 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge4 / judge5 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | AC * 3 MLE * 1 -- * 8 | 
ソースコード
import std.stdio, std.conv, std.string, std.bigint;
import std.math, std.random, std.datetime;
import std.array, std.range, std.algorithm, std.container;
string read(){ static string[] ss; while(!ss.length) ss = readln.chomp.split; string res = ss[0]; ss.popFront; return res; }
void main(){
	long n = read.to!long;
	long total = read.to!long;
	long[] as = readln.chomp.split.map!(to!long).array;
	
	long m = n / 2;
	
	string[long] xs;
	xs[as[0]] = "";
	foreach(a; as[1 .. m]){
		string[long] xs_new;
		foreach(k; xs.keys){
			if(k + a !in xs_new || xs_new[k + a] < xs[k] ~ "+") xs_new[k + a] = xs[k] ~ "+";
			if(k * a !in xs_new || xs_new[k * a] < xs[k] ~ "*") xs_new[k * a] = xs[k] ~ "*";
		}
		xs = xs_new;
	}
	debug xs.writeln;
	
	string[long] ys;
	ys[total] = "";
	foreach_reverse(a; as[m .. n]){
		string[long] ys_new;
		foreach(k; ys.keys){
			if(k - a !in ys_new || ys_new[k - a] < "+" ~ ys[k]) ys_new[k - a] = "+" ~ ys[k];
			if(k % a == 0) if(k / a !in ys_new || ys_new[k / a] < "*" ~ ys[k]) ys_new[k / a] = "*" ~ ys[k];
		}
		ys = ys_new;
	}
	debug ys.writeln;
	
	long[] kxs = xs.keys;
	foreach(k; kxs){
		if(k in ys){
			(xs[k] ~ ys[k]).writeln;
			break;
		}
	}
	return;
}
            
            
            
        
            
iicafiaxus