結果

問題 No.515 典型LCP
ユーザー 37zigen37zigen
提出日時 2017-05-06 02:57:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 900 ms / 1,000 ms
コード長 3,852 bytes
コンパイル時間 2,307 ms
コンパイル使用メモリ 75,412 KB
実行使用メモリ 67,700 KB
最終ジャッジ日時 2023-10-12 11:45:17
合計ジャッジ時間 9,934 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 900 ms
67,700 KB
testcase_01 AC 732 ms
67,604 KB
testcase_02 AC 345 ms
55,292 KB
testcase_03 AC 44 ms
49,568 KB
testcase_04 AC 43 ms
49,508 KB
testcase_05 AC 232 ms
55,208 KB
testcase_06 AC 234 ms
55,432 KB
testcase_07 AC 230 ms
54,980 KB
testcase_08 AC 274 ms
55,160 KB
testcase_09 AC 287 ms
54,892 KB
testcase_10 AC 296 ms
54,984 KB
testcase_11 AC 296 ms
55,304 KB
testcase_12 AC 299 ms
55,188 KB
testcase_13 AC 288 ms
55,180 KB
testcase_14 AC 193 ms
55,560 KB
testcase_15 AC 216 ms
55,220 KB
testcase_16 AC 215 ms
55,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.IOException;
import java.io.InputStream;
import java.util.Arrays;
import java.util.Collections;
import java.util.Comparator;
import java.util.NoSuchElementException;

class Main {
	int N, M;
	int[] X, Y;

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

	class S implements Comparable<S> {
		int idx;
		String s;

		public S(int idx, String s) {
			this.idx = idx;
			this.s = s;
		}
		
		public int compareTo(S o) {
			return s.compareTo(o.s);
		};
	}

	void run() {
		Scanner sc = new Scanner();
		long N = sc.nextLong();
		S[] s = new S[(int) N];
		for (int i = 0; i < N; ++i) {
			s[i] = new S(i, sc.next());
		}
		Arrays.sort(s);
		int[] rev = new int[(int) N];
		for (int i = 0; i < N; ++i) {
			rev[s[i].idx] = i;
		}
		int[] A = new int[(int) N];
		for (int i = 0; i + 1 < N; ++i) {
			int len = 0;
			while (len < Math.min(s[i].s.length(), s[i + 1].s.length())
					&& s[i].s.charAt(len) == s[i + 1].s.charAt(len)) {
				++len;
			}
			A[i] = len;
		}
		
		SparseTable st = new SparseTable(A);

		long M = sc.nextLong();
		long x = sc.nextLong();
		long d = sc.nextLong();
		long ans = 0;
		for (int k = 0; k < M; ++k) {
			int i = (int) (x / (N - 1)) + 1;
			int j = (int) (x % (N - 1)) + 1;
			if (i > j) {
				int tmp = i;
				i = j;
				j = tmp;
			} else {
				j = j + 1;
			}
			x = (x + d) % (N * (N - 1));
			--i;
			--j;
			if (rev[i] > rev[j]) {
				int tmp = i;
				i = j;
				j = tmp;
			}
			ans += st.query(rev[i], rev[j]);
		}
		System.out.println(ans);

	}

	class SparseTable {
		int[][] t;

		public SparseTable(int[] A) {
			int N = A.length;
			t = new int[(int) (Math.log(N) / Math.log(2) + 1)][];
			t[0] = new int[(int) N];
			for (int i = 0; i < N; ++i) {
				t[0][i] = A[i];
			}
			for (int i = 1; i < t.length; ++i) {
				int p = 0;
				while ((p + 1) + (1 << i) <= N)
					++p;
				t[i] = new int[p];
				for (int j = 0; j < t[i].length; ++j) {
					t[i][j] = Math.min(t[i - 1][j], t[i - 1][j + (1 << (i - 1))]);
				}
			}
		}

		int query(int l, int r) {
			int a = 0;
			while (1 << (a + 1) <= (r - l)) {
				++a;
			}
			return Math.min(t[a][l], t[a][r - (1 << a)]);

		}

	}

	class Scanner {
		private final InputStream in = System.in;
		private final byte[] buffer = new byte[1024];
		private int ptr = 0;
		private int buflen = 0;

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

		private int readByte() {
			if (hasNextByte())
				return buffer[ptr++];
			else
				return -1;
		}

		private boolean isPrintableChar(int c) {
			return 33 <= c && c <= 126;
		}

		private void skipUnprintable() {
			while (hasNextByte() && !isPrintableChar(buffer[ptr]))
				ptr++;
		}

		public boolean hasNext() {
			skipUnprintable();
			return hasNextByte();
		}

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

		public long nextLong() {
			if (!hasNext())
				throw new NoSuchElementException();
			long n = 0;
			boolean minus = false;
			int b = readByte();
			if (b == '-') {
				minus = true;
				b = readByte();
			}
			if (b < '0' || '9' < b) {
				throw new NumberFormatException();
			}
			while (true) {
				if ('0' <= b && b <= '9') {
					n *= 10;
					n += b - '0';
				} else if (b == -1 || !isPrintableChar(b)) {
					return minus ? -n : n;
				} else {
					throw new NumberFormatException();
				}
				b = readByte();
			}
		}
	}

	static void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}

}
0