結果

問題 No.2100 [Cherry Alpha C] Two-way Steps
ユーザー CuriousFairy315CuriousFairy315
提出日時 2022-10-14 22:56:09
言語 Java19
(openjdk 21)
結果
AC  
実行時間 489 ms / 2,000 ms
コード長 10,084 bytes
コンパイル時間 4,925 ms
コンパイル使用メモリ 81,228 KB
実行使用メモリ 86,856 KB
最終ジャッジ日時 2023-09-08 23:20:07
合計ジャッジ時間 19,902 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
49,404 KB
testcase_01 AC 42 ms
49,200 KB
testcase_02 AC 41 ms
49,028 KB
testcase_03 AC 42 ms
49,336 KB
testcase_04 AC 345 ms
76,680 KB
testcase_05 AC 262 ms
69,628 KB
testcase_06 AC 115 ms
54,844 KB
testcase_07 AC 130 ms
57,252 KB
testcase_08 AC 397 ms
83,816 KB
testcase_09 AC 242 ms
67,736 KB
testcase_10 AC 159 ms
58,656 KB
testcase_11 AC 269 ms
70,112 KB
testcase_12 AC 188 ms
64,580 KB
testcase_13 AC 277 ms
76,952 KB
testcase_14 AC 173 ms
58,628 KB
testcase_15 AC 284 ms
76,804 KB
testcase_16 AC 188 ms
61,776 KB
testcase_17 AC 184 ms
65,868 KB
testcase_18 AC 278 ms
76,648 KB
testcase_19 AC 389 ms
83,928 KB
testcase_20 AC 136 ms
57,404 KB
testcase_21 AC 188 ms
64,120 KB
testcase_22 AC 183 ms
61,216 KB
testcase_23 AC 336 ms
77,440 KB
testcase_24 AC 418 ms
82,820 KB
testcase_25 AC 411 ms
82,844 KB
testcase_26 AC 464 ms
86,304 KB
testcase_27 AC 409 ms
82,920 KB
testcase_28 AC 407 ms
82,520 KB
testcase_29 AC 489 ms
86,856 KB
testcase_30 AC 434 ms
85,012 KB
testcase_31 AC 402 ms
83,236 KB
testcase_32 AC 433 ms
83,312 KB
testcase_33 AC 401 ms
82,956 KB
testcase_34 AC 214 ms
64,828 KB
testcase_35 AC 196 ms
62,516 KB
testcase_36 AC 197 ms
62,716 KB
testcase_37 AC 188 ms
62,276 KB
testcase_38 AC 205 ms
62,896 KB
testcase_39 AC 173 ms
60,876 KB
testcase_40 AC 176 ms
60,768 KB
testcase_41 AC 176 ms
60,760 KB
testcase_42 AC 174 ms
61,136 KB
testcase_43 AC 179 ms
61,476 KB
testcase_44 AC 321 ms
85,964 KB
testcase_45 AC 319 ms
86,236 KB
testcase_46 AC 332 ms
86,400 KB
testcase_47 AC 330 ms
85,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;

public class Main {

	public static void main(String[] args) {
		new Main();
	}

	public Main() {
		FastScanner fs = new FastScanner();
		java.io.PrintWriter out = new java.io.PrintWriter(System.out);
		solve(fs, out);
		out.flush();
	}

	public void solve(FastScanner fs, java.io.PrintWriter out) {
		int N = fs.nextInt(), M = fs.nextInt();
		int[] H = new int[N];
		for (int i = 0;i < N;++ i) H[i] = fs.nextInt();
		ArrayList<ArrayList<Integer>> up = new ArrayList<>(N), down = new ArrayList<>(N);
		for (int i = 0;i < N;++ i) {
			up.add(new ArrayList<>());
			down.add(new ArrayList<>());
		}
		for (int i = 0;i < M;++ i) {
			int X = fs.nextInt() - 1, Y = fs.nextInt() - 1;
			up.get(Y).add(X);
			down.get(X).add(Y);
		}
		long[][] dp1 = new long[N][2];
		for (long[] i : dp1) java.util.Arrays.fill(i, -1);
		dp1[0][0] = dp1[0][1] = 0;
		for (int i = 1;i < N;++ i) {
			for (int j : up.get(i)) {
				if (H[i] > H[j]) {
					if (dp1[j][0] != -1) dp1[i][1] = Math.max(dp1[i][1], dp1[j][0] + H[i] - H[j]);
				} else if (dp1[j][1] != -1) {
					dp1[i][0] = Math.max(dp1[i][0], dp1[j][1]);
				}
			}
			dp1[i][1] = Math.max(dp1[i][1], dp1[i][0]);
		}
		out.println(dp1[N - 1][1]);
		long[][] dp2 = new long[N][2];
		for (long[] i : dp2) java.util.Arrays.fill(i, -1);
		dp2[N - 1][0] = dp2[N - 1][1] = 0;
		for (int i = N - 2;i >= 0;-- i) {
			for (int j : down.get(i)) {
				if (H[i] > H[j]) {
					if (dp2[j][0] != -1) dp2[i][1] = Math.max(dp2[i][1], dp2[j][0] + H[i] - H[j]);
				} else if (dp2[j][1] != -1) {
					dp2[i][0] = Math.max(dp2[i][0], dp2[j][1]);
				}
			}
			dp2[i][1] = Math.max(dp2[i][1], dp2[i][0]);
		}
		out.println(dp2[0][1]);
	}

	final int MOD = 998_244_353;
	int plus(int n, int m) {
		int sum = n + m;
		if (sum >= MOD) sum -= MOD;
		return sum;
	}
	int minus(int n, int m) {
		int sum = n - m;
		if (sum < 0) sum += MOD;
		return sum;
	}
	int times(int n, int m) {
		return (int)((long)n * m % MOD);
	}
	int divide(int n, int m) {
		return times(n, IntMath.pow(m, MOD - 2, MOD));
	}
	int[] fact, invf;
	void calc(int len) {
		len += 2;
		fact = new int[len];
		invf = new int[len];
		fact[0] = fact[1] = invf[0] = invf[1] = 1;
		for (int i = 2;i < fact.length;++ i) fact[i] = times(fact[i - 1], i);
		invf[len - 1] = divide(1, fact[len - 1]);
		for (int i = len - 1;i > 1;-- i) invf[i - 1] = times(i, invf[i]);
	}
	int comb(int n, int m) {
		if (n < m) return 0;
		return times(fact[n], times(invf[n - m], invf[m]));
	}
}

class FastScanner {

	private final java.io.InputStream in = System.in;
	private final byte[] buffer = new byte[8192];
	private int ptr = 0;
	private int buflen = 0;

	private boolean hasNextByte() {
		if (ptr < buflen) return true;
		ptr = 0;
		try {
			buflen = in.read(buffer);
		} catch (java.io.IOException e) {
			e.printStackTrace();
		}
		return buflen > 0;
	}

	private byte readByte() {
		return hasNextByte() ? buffer[ptr++ ] : -1;
	}

	private static boolean isPrintableChar(byte c) {
		return 32 < c || c < 0;
	}

	private static boolean isNumber(int c) {
		return '0' <= c && c <= '9';
	}

	public boolean hasNext() {
		while (hasNextByte() && !isPrintableChar(buffer[ptr]))
			ptr++ ;
		return hasNextByte();
	}

	public String next() {
		if (!hasNext()) throw new java.util.NoSuchElementException();
		StringBuilder sb = new StringBuilder();
		byte b;
		while (isPrintableChar(b = readByte()))
			sb.appendCodePoint(b);
		return sb.toString();
	}

	public final char nextChar() {
		if (!hasNext()) throw new java.util.NoSuchElementException();
		return (char)readByte();
	}

	public final long nextLong() {
		if (!hasNext()) throw new java.util.NoSuchElementException();
		long n = 0;
		try {
			byte b = readByte();
			if (b == '-') {
				while (isNumber(b = readByte()))
					n = n * 10 + '0' - b;
				return n;
			} else if (!isNumber(b)) throw new NumberFormatException();
			do
				n = n * 10 + b - '0';
			while (isNumber(b = readByte()));
		} catch (java.util.NoSuchElementException e) {}
		return n;
	}

	public final int nextInt() {
		if (!hasNext()) throw new java.util.NoSuchElementException();
		int n = 0;
		try {
			byte b = readByte();
			if (b == '-') {
				while (isNumber(b = readByte()))
					n = n * 10 + '0' - b;
				return n;
			} else if (!isNumber(b)) throw new NumberFormatException();
			do
				n = n * 10 + b - '0';
			while (isNumber(b = readByte()));
		} catch (java.util.NoSuchElementException e) {}
		return n;
	}

	public double nextDouble() {
		return Double.parseDouble(next());
	}
}

class Arrays {

	public static void sort(final int[] array) {
		sort(array, 0, array.length);
	}

	public static void sort(final int[] array, int fromIndex, int toIndex) {
		if (toIndex - fromIndex  <= 512) {
			java.util.Arrays.sort(array, fromIndex, toIndex);
			return;
		}
		sort(array, fromIndex, toIndex, 0, new int[array.length]);
	}

	private static final void sort(int[] a, final int from, final int to, final int l, final int[] bucket) {
		if (to - from  <= 512) {
			java.util.Arrays.sort(a, from, to);
			return;
		}
		final int BUCKET_SIZE = 256;
		final int INT_RECURSION = 4;
		final int MASK = 0xff;
		final int shift = l << 3;
		final int[] cnt = new int[BUCKET_SIZE + 1];
		final int[] put = new int[BUCKET_SIZE];
		for (int i = from; i < to; i++) ++ cnt[(a[i] >>> shift & MASK) + 1];
		for (int i = 0; i < BUCKET_SIZE; i++) cnt[i + 1] += cnt[i];
		for (int i = from; i < to; i++) {
			int bi = a[i] >>> shift & MASK;
			bucket[cnt[bi] + put[bi]++] = a[i];
		}
		for (int i = BUCKET_SIZE - 1, idx = from; i >= 0; i--) {
			int begin = cnt[i];
			int len = cnt[i + 1] - begin;
			System.arraycopy(bucket, begin, a, idx, len);
			idx += len;
	    }
		final int nxtL = l + 1;
		if (nxtL < INT_RECURSION) {
			sort(a, from, to, nxtL, bucket);
			if (l == 0) {
				int lft, rgt;
				lft = from - 1; rgt = to;
				while (rgt - lft > 1) {
					int mid = lft + rgt >> 1;
					if (a[mid] < 0) lft = mid;
					else rgt = mid;
				}
				reverse(a, from, rgt);
				reverse(a, rgt, to);
	        }
	    }
	}

	public static void sort(final long[] array) {
		sort(array, 0, array.length);
	}

	public static void sort(final long[] array, int fromIndex, int toIndex) {
		if (toIndex - fromIndex  <= 512) {
			java.util.Arrays.sort(array, fromIndex, toIndex);
			return;
		}
		sort(array, fromIndex, toIndex, 0, new long[array.length]);
	}

	private static final void sort(long[] a, final int from, final int to, final int l, final long[] bucket) {
		final int BUCKET_SIZE = 256;
		final int LONG_RECURSION = 8;
		final int MASK = 0xff;
		final int shift = l << 3;
		final int[] cnt = new int[BUCKET_SIZE + 1];
		final int[] put = new int[BUCKET_SIZE];
		for (int i = from; i < to; i++) ++ cnt[(int) ((a[i] >>> shift & MASK) + 1)];
		for (int i = 0; i < BUCKET_SIZE; i++) cnt[i + 1] += cnt[i];
		for (int i = from; i < to; i++) {
			int bi = (int) (a[i] >>> shift & MASK);
			bucket[cnt[bi] + put[bi]++] = a[i];
		}
		for (int i = BUCKET_SIZE - 1, idx = from; i >= 0; i--) {
			int begin = cnt[i];
			int len = cnt[i + 1] - begin;
			System.arraycopy(bucket, begin, a, idx, len);
			idx += len;
	    }
		final int nxtL = l + 1;
		if (nxtL < LONG_RECURSION) {
			sort(a, from, to, nxtL, bucket);
			if (l == 0) {
				int lft, rgt;
				lft = from - 1; rgt = to;
				while (rgt - lft > 1) {
					int mid = lft + rgt >> 1;
					if (a[mid] < 0) lft = mid;
					else rgt = mid;
				}
				reverse(a, from, rgt);
				reverse(a, rgt, to);
	        }
	    }
	}

	public static void reverse(int[] array) {
		reverse(array, 0, array.length);
	}

	public static void reverse(int[] array, int fromIndex, int toIndex) {
		for (-- toIndex;fromIndex < toIndex;++ fromIndex, -- toIndex) {
			int swap = array[fromIndex];
			array[fromIndex] = array[toIndex];
			array[toIndex] = swap;
		}
	}

	public static void reverse(long[] array) {
		reverse(array, 0, array.length);
	}

	public static void reverse(long[] array, int fromIndex, int toIndex) {
		for (-- toIndex;fromIndex < toIndex;++ fromIndex, -- toIndex) {
			long swap = array[fromIndex];
			array[fromIndex] = array[toIndex];
			array[toIndex] = swap;
		}
	}

	public static void shuffle(int[] array) {
		java.util.Random rnd = new java.util.Random();
		for (int i = 0;i < array.length;++ i) {
			int j = rnd.nextInt(array.length - i) + i;
			int swap = array[i];
			array[i] = array[j];
			array[j] = swap;
		}
	}

	public static void shuffle(long[] array) {
		java.util.Random rnd = new java.util.Random();
		for (int i = 0;i < array.length;++ i) {
			int j = rnd.nextInt(array.length - i) + i;
			long swap = array[i];
			array[i] = array[j];
			array[j] = swap;
		}
	}
}

class IntMath {

	public static int gcd(int a, int b) {
		while (a != 0)
			if ((b %= a) != 0) a %= b;
			else return a;
		return b;
	}

	public static int gcd(int... array) {
		int ret = array[0];
		for (int i = 1; i < array.length; ++i)
			ret = gcd(ret, array[i]);
		return ret;
	}

	public static long gcd(long a, long b) {
		while (a != 0)
			if ((b %= a) != 0) a %= b;
			else return a;
		return b;
	}

	public static long gcd(long... array) {
		long ret = array[0];
		for (int i = 1; i < array.length; ++i)
			ret = gcd(ret, array[i]);
		return ret;
	}

	public static long lcm(long a, long b) {
		return a / gcd(a, b) * b;
	}

	public static int pow(int a, int b) {
		int ans = 1;
		for (int mul = a; b > 0; b >>= 1, mul *= mul)
			if ((b & 1) != 0) ans *= mul;
		return ans;
	}

	public static long pow(long a, long b) {
		long ans = 1;
		for (long mul = a; b > 0; b >>= 1, mul *= mul)
			if ((b & 1) != 0) ans *= mul;
		return ans;
	}

	public static int pow(int a, long b, int mod) {
		if (b < 0) b = b % (mod - 1) + mod - 1;
		long ans = 1;
		for (long mul = a; b > 0; b >>= 1, mul = mul * mul % mod)
			if ((b & 1) != 0) ans = ans * mul % mod;
		return (int)ans;
	}

	public static int pow(long a, long b, int mod) {
		return pow((int)(a % mod), b, mod);
	}

	public static int floorsqrt(long n) {
		return (int)Math.sqrt(n + 0.1);
	}

	public static int ceilsqrt(long n) {
		return n <= 1 ? (int)n : (int)Math.sqrt(n - 0.1) + 1;
	}
}
0