結果

問題 No.1606 Stuffed Animals Keeper
ユーザー cyclerecycle9cyclerecycle9
提出日時 2021-08-09 07:36:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 3,000 ms
コード長 8,411 bytes
コンパイル時間 3,461 ms
コンパイル使用メモリ 83,032 KB
実行使用メモリ 67,564 KB
最終ジャッジ日時 2023-10-20 09:39:45
合計ジャッジ時間 9,391 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
53,340 KB
testcase_01 AC 53 ms
53,324 KB
testcase_02 AC 52 ms
53,332 KB
testcase_03 AC 114 ms
59,680 KB
testcase_04 AC 116 ms
64,224 KB
testcase_05 AC 96 ms
54,944 KB
testcase_06 AC 96 ms
57,252 KB
testcase_07 AC 110 ms
59,684 KB
testcase_08 AC 112 ms
59,664 KB
testcase_09 AC 100 ms
57,244 KB
testcase_10 AC 83 ms
55,240 KB
testcase_11 AC 76 ms
54,832 KB
testcase_12 AC 94 ms
57,472 KB
testcase_13 AC 55 ms
53,320 KB
testcase_14 AC 54 ms
53,320 KB
testcase_15 AC 62 ms
53,516 KB
testcase_16 AC 119 ms
64,140 KB
testcase_17 AC 121 ms
64,148 KB
testcase_18 AC 123 ms
67,564 KB
testcase_19 AC 119 ms
64,216 KB
testcase_20 AC 117 ms
64,140 KB
testcase_21 AC 84 ms
55,016 KB
testcase_22 AC 77 ms
54,408 KB
testcase_23 AC 84 ms
55,020 KB
testcase_24 AC 84 ms
54,988 KB
testcase_25 AC 77 ms
54,412 KB
testcase_26 AC 70 ms
54,412 KB
testcase_27 AC 70 ms
54,416 KB
testcase_28 AC 71 ms
54,592 KB
testcase_29 AC 77 ms
54,420 KB
testcase_30 AC 69 ms
54,420 KB
testcase_31 AC 65 ms
53,888 KB
testcase_32 AC 58 ms
53,328 KB
testcase_33 AC 63 ms
53,508 KB
testcase_34 AC 58 ms
53,324 KB
testcase_35 AC 65 ms
53,508 KB
testcase_36 AC 64 ms
53,332 KB
testcase_37 AC 63 ms
53,880 KB
testcase_38 AC 59 ms
53,320 KB
testcase_39 AC 57 ms
53,328 KB
testcase_40 AC 57 ms
53,328 KB
testcase_41 AC 56 ms
53,328 KB
testcase_42 AC 54 ms
53,328 KB
testcase_43 AC 119 ms
64,368 KB
testcase_44 AC 117 ms
64,256 KB
testcase_45 AC 116 ms
64,164 KB
testcase_46 AC 119 ms
64,200 KB
testcase_47 AC 125 ms
67,288 KB
testcase_48 AC 52 ms
53,316 KB
testcase_49 AC 52 ms
53,324 KB
testcase_50 AC 53 ms
53,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.IOException;
import java.io.InputStream;
import java.io.PrintWriter;
import java.math.BigDecimal;
import java.math.RoundingMode;
import java.util.*;

public class Main {
	static final long MOD=1000000007;
	static final long MOD1=998244353;
	static int ans=0;
	public static void main(String[] args){
		PrintWriter out = new PrintWriter(System.out);
		InputReader sc=new InputReader(System.in);
		int N = sc.nextInt();
		int[] A = sc.nextIntArray(N);
		ArrayList<Integer> arrayList0 = new ArrayList<>();
		ArrayList<Integer> arrayList1 = new ArrayList<>();
		int[] a = new int[3];
		int z = 0;
		for (int i = 0; i < A.length; i++) {
			if(A[i]==0)z++;
			a[A[i]]++;
			if (A[i]==2||i==A.length-1) {
				arrayList0.add(a[0]);
				arrayList1.add(a[1]);
				for (int j = 0; j < a.length; j++) {
					a[j] = 0;
					continue;
				}
			}
		}
		int[][] dp = new int[arrayList0.size()+1][z+1];
		for (int i = 0; i < dp.length; i++) {
			Arrays.fill(dp[i], Integer.MAX_VALUE/3);
		}
		dp[0][0] = 0;
		for (int i = 1; i < dp.length; i++) {
			int len = arrayList0.get(i-1) + arrayList1.get(i-1);
			int one = arrayList1.get(i-1);
			for (int j = 0; j <= z; j++) {
				dp[i][j] = dp[i-1][j];
				if (j-len>=0) {
					dp[i][j] = Math.min(dp[i][j], dp[i-1][j-len]+one);
				}
			}
		}
		if (dp[arrayList0.size()][z]==Integer.MAX_VALUE/3){
			dp[arrayList0.size()][z] = -1;
		}
		System.out.println(dp[arrayList0.size()][z]);
   	}
	static class InputReader { 
		private InputStream in;
		private byte[] buffer = new byte[1024];
		private int curbuf;
		private int lenbuf;
		public InputReader(InputStream in) {
			this.in = in;
			this.curbuf = this.lenbuf = 0;
		}
		public boolean hasNextByte() {
			if (curbuf >= lenbuf) {
				curbuf = 0;
				try {
					lenbuf = in.read(buffer);
				} catch (IOException e) {
					throw new InputMismatchException();
				}
				if (lenbuf <= 0)
					return false;
			}
			return true;
		}
 
		private int readByte() {
			if (hasNextByte())
				return buffer[curbuf++];
			else
				return -1;
		}
 
		private boolean isSpaceChar(int c) {
			return !(c >= 33 && c <= 126);
		}
 
		private void skip() {
			while (hasNextByte() && isSpaceChar(buffer[curbuf]))
				curbuf++;
		}
 
		public boolean hasNext() {
			skip();
			return hasNextByte();
		}
 
		public String next() {
			if (!hasNext())
				throw new NoSuchElementException();
			StringBuilder sb = new StringBuilder();
			int b = readByte();
			while (!isSpaceChar(b)) {
				sb.appendCodePoint(b);
				b = readByte();
			}
			return sb.toString();
		}
 
		public int nextInt() {
			if (!hasNext())
				throw new NoSuchElementException();
			int c = readByte();
			while (isSpaceChar(c))
				c = readByte();
			boolean minus = false;
			if (c == '-') {
				minus = true;
				c = readByte();
			}
			int res = 0;
			do {
				if (c < '0' || c > '9')
					throw new InputMismatchException();
				res = res * 10 + c - '0';
				c = readByte();
			} while (!isSpaceChar(c));
			return (minus) ? -res : res;
		}
 
		public long nextLong() {
			if (!hasNext())
				throw new NoSuchElementException();
			int c = readByte();
			while (isSpaceChar(c))
				c = readByte();
			boolean minus = false;
			if (c == '-') {
				minus = true;
				c = readByte();
			}
			long res = 0;
			do {
				if (c < '0' || c > '9')
					throw new InputMismatchException();
				res = res * 10 + c - '0';
				c = readByte();
			} while (!isSpaceChar(c));
			return (minus) ? -res : res;
		}
 
		public double nextDouble() {
			return Double.parseDouble(next());
		}
 
		public int[] nextIntArray(int n) {
			int[] a = new int[n];
			for (int i = 0; i < n; i++)
				a[i] = nextInt();
			return a;
		}
		public double[] nextDoubleArray(int n) {
			double[] a = new double[n];
			for (int i = 0; i < n; i++)
				a[i] = nextDouble();
			return a;
		}
		public long[] nextLongArray(int n) {
			long[] a = new long[n];
			for (int i = 0; i < n; i++)
				a[i] = nextLong();
			return a;
		}
 
		public char[][] nextCharMap(int n, int m) {
			char[][] map = new char[n][m];
			for (int i = 0; i < n; i++)
				map[i] = next().toCharArray();
			return map;
		}
	}
}
//funはlamda式で定義
//prodで取得,setで更新(一点加算なら更新でおk)
//二ブタンも出来る
//SegTree<Integer> segTree=new SegTree<Integer>(N, (x,y)->x+y, 0);使用例
class SegTree<S> {
	    final int MAX;

	    final int N;
	    final java.util.function.BinaryOperator<S> op;
	    final S E;

	    final S[] data;

	    @SuppressWarnings("unchecked")
	    public SegTree(int n, java.util.function.BinaryOperator<S> op, S e) {
	        this.MAX = n;
	        int k = 1;
	        while (k < n) k <<= 1;
	        this.N = k;
	        this.E = e;
	        this.op = op;
	        this.data = (S[]) new Object[N << 1];
	        java.util.Arrays.fill(data, E);
	    }

	    public SegTree(S[] dat, java.util.function.BinaryOperator<S> op, S e) {
	        this(dat.length, op, e);
	        build(dat);
	    }

	    private void build(S[] dat) {
	        int l = dat.length;
	        System.arraycopy(dat, 0, data, N, l);
	        for (int i = N - 1; i > 0; i--) {
	            data[i] = op.apply(data[i << 1 | 0], data[i << 1 | 1]);
	        }
	    }

	    public void set(int p, S x) {
	        exclusiveRangeCheck(p);
	        data[p += N] = x;
	        p >>= 1;
	        while (p > 0) {
	            data[p] = op.apply(data[p << 1 | 0], data[p << 1 | 1]);
	            p >>= 1;
	        }
	    }

	    public S get(int p) {
	        exclusiveRangeCheck(p);
	        return data[p + N];
	    }

	    public S prod(int l, int r) {
	        if (l > r) {
	            throw new IllegalArgumentException(
	                String.format("Invalid range: [%d, %d)", l, r)
	            );
	        }
	        inclusiveRangeCheck(l);
	        inclusiveRangeCheck(r);
	        S sumLeft = E;
	        S sumRight = E;
	        l += N; r += N;
	        while (l < r) {
	            if ((l & 1) == 1) sumLeft = op.apply(sumLeft, data[l++]);
	            if ((r & 1) == 1) sumRight = op.apply(data[--r], sumRight);
	            l >>= 1; r >>= 1;
	        }
	        return op.apply(sumLeft, sumRight);
	    }

	    public S allProd() {
	        return data[1];
	    }

	    public int maxRight(int l, java.util.function.Predicate<S> f) {
	        inclusiveRangeCheck(l);
	        if (!f.test(E)) {
	            throw new IllegalArgumentException("Identity element must satisfy the condition.");
	        }
	        if (l == MAX) return MAX;
	        l += N;
	        S sum = E;
	        do {
	            l >>= Integer.numberOfTrailingZeros(l);
	            if (!f.test(op.apply(sum, data[l]))) {
	                while (l < N) {
	                    l = l << 1;
	                    if (f.test(op.apply(sum, data[l]))) {
	                        sum = op.apply(sum, data[l]);
	                        l++;
	                    }
	                }
	                return l - N;
	            }
	            sum = op.apply(sum, data[l]);
	            l++;
	        } while ((l & -l) != l);
	        return MAX;
	    }

	    public int minLeft(int r, java.util.function.Predicate<S> f) {
	        inclusiveRangeCheck(r);
	        if (!f.test(E)) {
	            throw new IllegalArgumentException("Identity element must satisfy the condition.");
	        }
	        if (r == 0) return 0;
	        r += N;
	        S sum = E;
	        do {
	            r--;
	            while (r > 1 && (r & 1) == 1) r >>= 1;
	            if (!f.test(op.apply(data[r], sum))) {
	                while (r < N) {
	                    r = r << 1 | 1;
	                    if (f.test(op.apply(data[r], sum))) {
	                        sum = op.apply(data[r], sum);
	                        r--;
	                    }
	                }
	                return r + 1 - N;
	            }
	            sum = op.apply(data[r], sum);
	        } while ((r & -r) != r);
	        return 0;
	    }

	    private void exclusiveRangeCheck(int p) {
	        if (p < 0 || p >= MAX) {
	            throw new IndexOutOfBoundsException(
	                String.format("Index %d out of bounds for the range [%d, %d).", p, 0, MAX)
	            );
	        }
	    }

	    private void inclusiveRangeCheck(int p) {
	        if (p < 0 || p > MAX) {
	            throw new IndexOutOfBoundsException(
	                String.format("Index %d out of bounds for the range [%d, %d].", p, 0, MAX)
	            );
	        }
	    }
	}
0