結果

問題 No.956 Number of Unbalanced
ユーザー uwiuwi
提出日時 2019-12-19 02:22:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,633 ms / 2,000 ms
コード長 7,328 bytes
コンパイル時間 5,815 ms
コンパイル使用メモリ 87,016 KB
実行使用メモリ 79,724 KB
最終ジャッジ日時 2023-09-21 04:46:08
合計ジャッジ時間 25,221 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
51,496 KB
testcase_01 AC 49 ms
51,644 KB
testcase_02 AC 50 ms
51,704 KB
testcase_03 AC 51 ms
51,480 KB
testcase_04 AC 51 ms
51,880 KB
testcase_05 AC 51 ms
51,396 KB
testcase_06 AC 681 ms
73,676 KB
testcase_07 AC 490 ms
62,136 KB
testcase_08 AC 796 ms
66,448 KB
testcase_09 AC 754 ms
62,384 KB
testcase_10 AC 557 ms
66,020 KB
testcase_11 AC 531 ms
63,392 KB
testcase_12 AC 685 ms
67,760 KB
testcase_13 AC 968 ms
75,504 KB
testcase_14 AC 528 ms
63,196 KB
testcase_15 AC 1,633 ms
79,724 KB
testcase_16 AC 469 ms
62,852 KB
testcase_17 AC 939 ms
71,172 KB
testcase_18 AC 518 ms
65,604 KB
testcase_19 AC 1,234 ms
77,088 KB
testcase_20 AC 453 ms
65,852 KB
testcase_21 AC 1,207 ms
74,764 KB
testcase_22 AC 1,083 ms
78,608 KB
testcase_23 AC 424 ms
63,548 KB
testcase_24 AC 1,226 ms
78,060 KB
testcase_25 AC 471 ms
63,684 KB
testcase_26 AC 836 ms
73,152 KB
testcase_27 AC 541 ms
66,148 KB
testcase_28 AC 527 ms
62,152 KB
testcase_29 AC 490 ms
62,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package adv2019;
import java.io.ByteArrayInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.PrintWriter;
import java.util.Arrays;
import java.util.Comparator;
import java.util.InputMismatchException;

public class D19 {
	InputStream is;
	PrintWriter out;
	String INPUT = "";
	
	void solve()
	{
		// (v,k),(w,l)
		// (v,k-l)
		int n = ni();
		a = na(n);
		b = makeBuckets(a, 100000);
		dfs(0, n);
		out.println(ans);
	}
	
	int[] a;
	int[][] b;
	
	public static int[][] makeBuckets(int[] a, int sup)
	{
		int n = a.length;
		int[][] bucket = new int[sup+1][];
		int[] bp = new int[sup+1];
		for(int i = 0;i < n;i++)bp[a[i]]++;
		for(int i = 0;i <= sup;i++)bucket[i] = new int[bp[i]];
		for(int i = n-1;i >= 0;i--)bucket[a[i]][--bp[a[i]]] = i;
		return bucket;
	}

	
	long ans;
	
	void dfs(int l, int r)
	{
		if(r-l == 1) {
			ans++;
			return;
		}
		if(r-l <= 0) {
			return;
		}
		int h = l+r>>1;
		
//		int[] L = new int[h-l];
//		for(int i = 0;i < h-l;i++)L[i] = a[h-1-i];
//		int[] R = new int[r-h];
//		for(int i = 0;i < r-h;i++)R[i] = a[i+h];
		
		int[][] cansl = null;
		int[][] cansr = null;
		{
			int s = 0;
			int arg = 0;
			int[][] cans = new int[h-l][];
			int[] allcan = new int[h-l];
			int p = 0;
			for(int i = h-1;i >= l;i--) {
				if(a[i] == arg) {
					s++;
				}else {
					if(--s < 0) {
						s = 1;
						arg = a[i];
					}
				}
				// そいつが本当に過半数か
				int fa = lowerBound(b[arg], h) - lowerBound(b[arg], i);
				if(fa * 2 > h-i) {
					allcan[p] = arg;
					cans[p++] = new int[] {i, arg, fa-(h-i-fa)};
				}
			}
			cans = Arrays.copyOf(cans, p);
			Arrays.sort(cans, new Comparator<int[]>() {
				public int compare(int[] a, int[] b) {
					return a[1] - b[1];
				}
			});
			cansl = cans;
			for(int i = 0;i < p;) {
				int j = i;
				while(j < p && cans[j][1] == cans[i][1])j++;
				
				int[] lfs = new int[j-i];
				for(int k = i;k < j;k++) {
					lfs[k-i] = cans[k][2];
				}
				Arrays.sort(lfs); // リードしているカウントたち
				
				int ok = j-i;
				int ud = 0;
				for(int k = h;k < r;k++) {
					if(a[k] == cans[i][1]) {
						ud++;
						int lb = lowerBound(lfs, -ud+2) - lowerBound(lfs, -ud+1);
						ok += lb;
					}else {
						int lb = lowerBound(lfs, -ud+2) - lowerBound(lfs, -ud+1);
						ok -= lb;
						ud--;
					}
					ans += ok;
				}
				
				i = j;
			}
		}
		
		{
			int s = 0;
			int arg = 0;
			int[][] cans = new int[r-h][];
			int[] allcan = new int[r-h];
			int p = 0;
			for(int i = h;i < r;i++) {
				if(a[i] == arg) {
					s++;
				}else {
					if(--s < 0) {
						s = 1;
						arg = a[i];
					}
				}
				// そいつが本当に過半数か
				int fa = lowerBound(b[arg], i+1) - lowerBound(b[arg], h);
				if(fa * 2 > i-h+1) {
					allcan[p] = arg;
					cans[p++] = new int[] {i, arg, fa-(i-h+1-fa)};
				}
			}
			cans = Arrays.copyOf(cans, p);
			Arrays.sort(cans, new Comparator<int[]>() {
				public int compare(int[] a, int[] b) {
					return a[1] - b[1];
				}
			});
			cansr = cans;
			for(int i = 0;i < p;) {
				int j = i;
				while(j < p && cans[j][1] == cans[i][1])j++;
				
				int[] lfs = new int[j-i];
				for(int k = i;k < j;k++) {
					lfs[k-i] = cans[k][2];
				}
				Arrays.sort(lfs); // リードしているカウントたち
				
				int ok = j-i;
				int ud = 0;
				for(int k = h-1;k >= l;k--) {
					if(a[k] == cans[i][1]) {
						ud++;
						int lb = lowerBound(lfs, -ud+2) - lowerBound(lfs, -ud+1);
						ok += lb;
					}else {
						int lb = lowerBound(lfs, -ud+2) - lowerBound(lfs, -ud+1);
						ok -= lb;
						ud--;
					}
					ans += ok;
				}
				
				i = j;
			}
		}
//		tr(ans);
		
//		tr(cansl, cansr);
		int q = 0;
		for(int i = 0;i < cansl.length;){
			int j = i;
			while(j < cansl.length && cansl[i][1] == cansl[j][1])j++;
			while(q < cansr.length && cansr[q][1] < cansl[i][1])q++;
			int oq = q;
			while(q < cansr.length && cansr[q][1] == cansl[i][1])q++;
			ans -= (long)(j-i) * (q-oq); // うそくさい
			
			i = j;
		}
//		tr(ans);
		
		dfs(l, h);
		dfs(h, r);
	}
	
	public static int[] uniq(int[] a)
	{
		int n = a.length;
		int p = 0;
		for(int i = 0;i < n;i++) {
			if(i == 0 || a[i] != a[i-1])a[p++] = a[i];
		}
		return Arrays.copyOf(a, p);
	}

	
	public static int lowerBound(int[] a, int v){ return lowerBound(a, 0, a.length, v); }
	public static int lowerBound(int[] a, int l, int r, int v)
	{
		if(l > r || l < 0 || r > a.length)throw new IllegalArgumentException();
		int low = l-1, high = r;
		while(high-low > 1){
			int h = high+low>>>1;
			if(a[h] >= v){
				high = h;
			}else{
				low = h;
			}
		}
		return high;
	}

	
	void run() throws Exception
	{
		is = INPUT.isEmpty() ? System.in : new ByteArrayInputStream(INPUT.getBytes());
		out = new PrintWriter(System.out);
		
		long s = System.currentTimeMillis();
		solve();
		out.flush();
		if(!INPUT.isEmpty())tr(System.currentTimeMillis()-s+"ms");
//		Thread t = new Thread(null, null, "~", Runtime.getRuntime().maxMemory()){
//			@Override
//			public void run() {
//				long s = System.currentTimeMillis();
//				solve();
//				out.flush();
//				if(!INPUT.isEmpty())tr(System.currentTimeMillis()-s+"ms");
//			}
//		};
//		t.start();
//		t.join();
	}
	
	public static void main(String[] args) throws Exception { new D19().run(); }
	
	private byte[] inbuf = new byte[1024];
	public int lenbuf = 0, ptrbuf = 0;
	
	private int readByte()
	{
		if(lenbuf == -1)throw new InputMismatchException();
		if(ptrbuf >= lenbuf){
			ptrbuf = 0;
			try { lenbuf = is.read(inbuf); } catch (IOException e) { throw new InputMismatchException(); }
			if(lenbuf <= 0)return -1;
		}
		return inbuf[ptrbuf++];
	}
	
	private boolean isSpaceChar(int c) { return !(c >= 33 && c <= 126); }
	private int skip() { int b; while((b = readByte()) != -1 && isSpaceChar(b)); return b; }
	
	private double nd() { return Double.parseDouble(ns()); }
	private char nc() { return (char)skip(); }
	
	private String ns()
	{
		int b = skip();
		StringBuilder sb = new StringBuilder();
		while(!(isSpaceChar(b))){ // when nextLine, (isSpaceChar(b) && b != ' ')
			sb.appendCodePoint(b);
			b = readByte();
		}
		return sb.toString();
	}
	
	private char[] ns(int n)
	{
		char[] buf = new char[n];
		int b = skip(), p = 0;
		while(p < n && !(isSpaceChar(b))){
			buf[p++] = (char)b;
			b = readByte();
		}
		return n == p ? buf : Arrays.copyOf(buf, p);
	}
	
	private int[] na(int n)
	{
		int[] a = new int[n];
		for(int i = 0;i < n;i++)a[i] = ni();
		return a;
	}
	
	private long[] nal(int n)
	{
		long[] a = new long[n];
		for(int i = 0;i < n;i++)a[i] = nl();
		return a;
	}
	
	private char[][] nm(int n, int m) {
		char[][] map = new char[n][];
		for(int i = 0;i < n;i++)map[i] = ns(m);
		return map;
	}
	
	private int[][] nmi(int n, int m) {
		int[][] map = new int[n][];
		for(int i = 0;i < n;i++)map[i] = na(m);
		return map;
	}
	
	private int ni() { return (int)nl(); }
	
	private long nl()
	{
		long num = 0;
		int b;
		boolean minus = false;
		while((b = readByte()) != -1 && !((b >= '0' && b <= '9') || b == '-'));
		if(b == '-'){
			minus = true;
			b = readByte();
		}
		
		while(true){
			if(b >= '0' && b <= '9'){
				num = num * 10 + (b - '0');
			}else{
				return minus ? -num : num;
			}
			b = readByte();
		}
	}
	
	private static void tr(Object... o) { System.out.println(Arrays.deepToString(o)); }
}
0