結果

問題 No.873 バイナリ、ヤバいなり!w
ユーザー fgwiebfaoishfgwiebfaoish
提出日時 2020-06-12 12:49:39
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 3,155 bytes
コンパイル時間 1,019 ms
コンパイル使用メモリ 116,540 KB
実行使用メモリ 30,952 KB
最終ジャッジ日時 2024-06-24 03:47:23
合計ジャッジ時間 6,943 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 269 ms
27,056 KB
testcase_01 WA -
testcase_02 AC 544 ms
28,764 KB
testcase_03 AC 452 ms
28,084 KB
testcase_04 WA -
testcase_05 AC 29 ms
25,180 KB
testcase_06 AC 31 ms
24,920 KB
testcase_07 AC 29 ms
25,040 KB
testcase_08 AC 138 ms
25,780 KB
testcase_09 AC 30 ms
27,096 KB
testcase_10 AC 31 ms
27,008 KB
testcase_11 AC 28 ms
22,832 KB
testcase_12 AC 59 ms
26,868 KB
testcase_13 AC 30 ms
24,840 KB
testcase_14 AC 29 ms
24,664 KB
testcase_15 AC 29 ms
25,132 KB
testcase_16 AC 29 ms
24,664 KB
testcase_17 AC 29 ms
24,792 KB
testcase_18 AC 29 ms
27,216 KB
testcase_19 AC 29 ms
25,088 KB
testcase_20 AC 29 ms
25,140 KB
testcase_21 AC 29 ms
24,920 KB
testcase_22 AC 29 ms
25,180 KB
testcase_23 AC 28 ms
24,920 KB
testcase_24 AC 30 ms
26,964 KB
testcase_25 AC 29 ms
22,840 KB
testcase_26 AC 29 ms
25,052 KB
testcase_27 AC 29 ms
24,924 KB
testcase_28 AC 29 ms
25,176 KB
testcase_29 AC 29 ms
24,836 KB
testcase_30 AC 28 ms
24,668 KB
testcase_31 AC 30 ms
24,968 KB
testcase_32 AC 44 ms
25,056 KB
testcase_33 AC 33 ms
25,136 KB
testcase_34 AC 96 ms
25,436 KB
testcase_35 AC 573 ms
30,952 KB
testcase_36 AC 311 ms
27,224 KB
testcase_37 AC 571 ms
29,016 KB
testcase_38 AC 570 ms
28,632 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
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.Generic;
using System.Collections;
using System.Collections.Specialized;
using System.Linq;
using System.Text;
using System.IO;
using System.Reflection;
using static System.Math;
using System.Numerics;
//using nint=System.Int32;
static class Program{
	const int mod=(int)1e9+7;
	const double eps=1e-11;
	static void Main(){
		Sc sc=new Sc();
		var n=sc.I;
		var dp1=new int[n+1];
		var dp2=new int[n+1];
		var dp3=new int[n+1];
		var dp4=new int[n+1];
		for(int i = 1;i<=n;i++) {
			dp1[i]=int.MaxValue;
			for(int j = 1;j*j<=i;j++) {
				if(dp1[i]>dp1[i-j*j]+j){
					dp1[i]=dp1[i-j*j]+j;
					dp4[i]=dp4[i-j*j]+1;
					dp2[i]=i-j*j;
					dp3[i]=Fu(dp3[i-j*j],j);
				}
				else if(dp1[i]==dp1[i-j*j]+j&&dp3[i]!=Fu(Fu(dp3[i-j*j],j),dp3[i])){
					dp4[i]=dp4[i-j*j]+1;
					dp2[i]=i-j*j;
					dp3[i]=Fu(dp3[i-j*j],j);
				}
			}
		}
		int p=n;
		var h=new int[dp4[p]];
		for(int i = 0;p!=0;i++) {
			h[i]=(int)Sqrt(p-dp2[p]);
			p=dp2[p];
		}
		Array.Sort(h,(u,v)=>v==Fu(v,u)?1:-1);
		StringBuilder sb=new StringBuilder();
		for(int i = 0,k=1;i<h.Length;i++) {
			var c=new int[h[i]];
			for(int j = k;j<h[i];j+=2) {c[j]=1;}
			sb.Append(String.Join("",c).ToArray());
			k=c[c.Length-1]^1;
		}
		Console.WriteLine(sb);
		int Fu(int a,int b) {
			if((a&1)==1&&(b&1)==0){return a;}
			if((a&1)==0&&(b&1)==1){return b;}
			if((a&1)==0&&(b&1)==0){return Max(a,b);}
			return Min(a,b);
		}
	}
}

public class Sc{
	public int I{get{return int.Parse(Console.ReadLine());}}
	public long L{get{return long.Parse(Console.ReadLine());}}
	public double D{get{return double.Parse(Console.ReadLine());}}
	public string S{get{return Console.ReadLine();}}
	public int[] Ia{get{return Array.ConvertAll(Console.ReadLine().Split(),int.Parse);}}
	public long[] La{get{return Array.ConvertAll(Console.ReadLine().Split(),long.Parse);}}
	public double[] Da{get{return Array.ConvertAll(Console.ReadLine().Split(),double.Parse);}}
	public string[] Sa{get{return Console.ReadLine().Split();}}
	public object[] Oa{get{return Console.ReadLine().Split();}}
	public int[] Ia2{get{return Array.ConvertAll(("0 "+Console.ReadLine()+" 0").Split(),int.Parse);}}
	public int[] Ia3(string a,string b){return Array.ConvertAll((a+Console.ReadLine()+b).Split(),int.Parse);}
	public long[] La2{get{return Array.ConvertAll(("0 "+Console.ReadLine()+" 0").Split(),long.Parse);}}
	public long[] La3(string a,string b){return Array.ConvertAll((a+Console.ReadLine()+b).Split(),long.Parse);}
	public double[] Da2{get{return Array.ConvertAll(("0 "+Console.ReadLine()+" 0").Split(),double.Parse);}}
	public double[] Da3(string a,string b){return Array.ConvertAll((a+Console.ReadLine()+b).Split(),double.Parse);}
	public T[] Arr<T>(int n,Func<T> f){var a=new T[n];for(int i=0;i<n;i++){a[i]=f();}return a;}
	public T[] Arr<T>(int n,Func<int,T> f){var a=new T[n];for(int i=0;i<n;i++){a[i]=f(i);}return a;}
	public T[] Arr<T>(int n,Func<string[],T> f){var a=new T[n];for(int i=0;i<n;i++){a[i]=f(Console.ReadLine().Split());}return a;}
	public T[] Arr<T>(int n,Func<int,string[],T> f){var a=new T[n];for(int i=0;i<n;i++){a[i]=f(i,Console.ReadLine().Split());}return a;}
}
0