結果

問題 No.515 典型LCP
ユーザー uwiuwi
提出日時 2017-05-06 02:14:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 755 ms / 1,000 ms
コード長 5,599 bytes
コンパイル時間 5,328 ms
コンパイル使用メモリ 86,460 KB
実行使用メモリ 68,776 KB
最終ジャッジ日時 2023-10-12 11:24:59
合計ジャッジ時間 10,422 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 755 ms
68,776 KB
testcase_01 AC 653 ms
67,636 KB
testcase_02 AC 287 ms
55,136 KB
testcase_03 AC 42 ms
49,492 KB
testcase_04 AC 42 ms
49,524 KB
testcase_05 AC 214 ms
54,780 KB
testcase_06 AC 216 ms
55,024 KB
testcase_07 AC 213 ms
55,040 KB
testcase_08 AC 241 ms
55,136 KB
testcase_09 AC 269 ms
54,812 KB
testcase_10 AC 270 ms
55,964 KB
testcase_11 AC 272 ms
55,816 KB
testcase_12 AC 274 ms
55,908 KB
testcase_13 AC 273 ms
56,328 KB
testcase_14 AC 179 ms
56,404 KB
testcase_15 AC 207 ms
55,648 KB
testcase_16 AC 211 ms
55,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package contest170505;
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 D5 {
	InputStream is;
	PrintWriter out;
	String INPUT = "";
	
	static class Datum
	{
		String s;
		int id;
	}
	
	void solve()
	{
		int n = ni();
		Datum[] ds = new Datum[n];
		for(int i = 0;i < n;i++){
			ds[i] = new Datum();
			ds[i].s = ns();
			ds[i].id = i;
		}
		Arrays.sort(ds, new Comparator<Datum>() {
			public int compare(Datum a, Datum b) {
				return a.s.compareTo(b.s);
			}
		});
		int[] lcp = new int[n-1];
		for(int i = 0;i < n-1;i++){
			int same = 0;
			for(int j = 0;j < ds[i].s.length() && j < ds[i+1].s.length();j++){
				if(ds[i].s.charAt(j) == ds[i+1].s.charAt(j)){
					same++;
				}else{
					break;
				}
			}
			lcp[i] = same;
		}
		int[][] st = build(lcp);
		
		int[] iord = new int[n];
		for(int i = 0;i < n;i++){
			iord[ds[i].id] = i;
		}
		
		int M = ni();
		long x = nl(), d = nl();
		long ret = 0;
		for(int k = 1;k <= M;k++){
			long ik = x/(n-1)+1;
			long jk = x%(n-1)+1;
			if(ik > jk){
				long e = ik; ik = jk; jk = e;
			}else{
				jk++;
			}
			x = (x+d)%((long)n*(n-1));
			
			int u = iord[(int)ik-1], v = iord[(int)jk-1];
			if(u > v){
				int e = u; u = v; v = e;
			}
			ret += rmq(st, u, v);
		}
		out.println(ret);
	}
	
	public static int[][] build(int[] a)
	{
		int n = a.length;
		int b = 32-Integer.numberOfLeadingZeros(n);
		int[][] ret = new int[b][];
		for(int i = 0, l = 1;i < b;i++, l*=2) {
			if(i == 0) {
				ret[i] = a;
			}else {
				ret[i] = new int[n-l+1];
				for(int j = 0;j < n-l+1;j++) {
					ret[i][j] = Math.min(ret[i-1][j], ret[i-1][j+l/2]);
				}
			}
		}
		return ret;
	}
	
	// [a,b)
	public static int rmq(int[][] or, int l, int r)
	{
		assert l <= r;
		if(l >= r)return Integer.MAX_VALUE;
		// 1:0, 2:1, 3:1, 4:2, 5:2, 6:2, 7:2, 8:3
		int t = 31-Integer.numberOfLeadingZeros(r-l);
		return Math.min(or[t][l], or[t][r-(1<<t)]);
	}
	
	// yosupo table
	static final int S = 3;
	
	public static int[][] buildY(int[] a)
	{
		int n = a.length;
		int[] ca = new int[(n>>>S)+1];
		Arrays.fill(ca, Integer.MAX_VALUE);
		for(int i = 0;i < n;i++){
			if(a[i] < ca[i>>>S])ca[i>>>S] = a[i];
		}
		int[][] st = build(ca);
		return st;
	}
	
	public static int rmq(int[][] st, int[] a, int l, int r)
	{
		assert l <= r;
		if(l >= r)return Integer.MAX_VALUE;
		if(l+(1<<S)-1>>>S >= r>>>S){
			int ret = Integer.MAX_VALUE;
			for(int i = l;i < r;i++){
				if(a[i] < ret)ret = a[i];
			}
			return ret;
		}
		int t = 31-Integer.numberOfLeadingZeros((r>>>S)-(l+(1<<S)-1>>>S));
		int ret = Math.min(st[t][l+(1<<S)-1>>>S], st[t][(r>>>S)-(1<<t)]);
		while(l<<~S!=0){
			if(a[l] < ret)ret = a[l];
			l++;
		}
		while(r<<~S!=0){
			r--;
			if(a[r] < ret)ret = a[r];
		}
		return ret;
	}

	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 D5().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