結果

問題 No.33 アメーバがたくさん
ユーザー 37zigen37zigen
提出日時 2020-03-30 04:44:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 5,000 ms
コード長 1,016 bytes
コンパイル時間 2,126 ms
コンパイル使用メモリ 78,116 KB
実行使用メモリ 54,256 KB
最終ジャッジ日時 2024-06-10 19:47:55
合計ジャッジ時間 4,562 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
54,024 KB
testcase_01 AC 127 ms
53,956 KB
testcase_02 AC 124 ms
54,188 KB
testcase_03 AC 131 ms
53,956 KB
testcase_04 AC 130 ms
54,104 KB
testcase_05 AC 136 ms
54,256 KB
testcase_06 AC 131 ms
53,676 KB
testcase_07 AC 133 ms
54,128 KB
testcase_08 AC 126 ms
53,016 KB
testcase_09 AC 129 ms
53,036 KB
testcase_10 AC 132 ms
53,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Comparator;
import java.util.Scanner;

class Main {
	public static void main(String[] args) {
		new Main().run();
	}
	
	long solve(long D,long T,long[] X) {
		int n=X.length;
		Arrays.sort(X);
		long ret=0;
		for(int i=0;i<n;++i){
			int j=i;
			while(j+1<n&&X[j+1]-X[j]<=2*D*T)++j;
			ret+=2*T+((X[j]-X[i])/D+1);
			i=j;
		}
		return ret;
	}
	
	void run() {
		Scanner sc=new Scanner(System.in);
		int N=sc.nextInt();
		long D=sc.nextLong();
		long T=sc.nextLong();
		long[] X=new long[N];
		for(int i=0;i<N;++i) {
			X[i]=sc.nextLong()+(long)1e9;
		}
		for(int i=0;i<N;++i) {
			for(int j=i+1;j<N;++j) {
				if(X[i]%D<X[j]%D) {
					X[i]^=X[j];X[j]^=X[i];X[i]^=X[j];
				}
			}
		}
		long ans=0;
		for(int i=0;i<N;++i) {
			int j=i;
			while(j+1<N&&X[i]%D==X[j+1]%D) {
				++j;
			}
			ans+=solve(D,T,Arrays.copyOfRange(X, i, j+1));
			i=j;
		}
		System.out.println(ans);
	}
	
	static void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}

}

0