結果

問題 No.1013 〇マス進む
ユーザー ks2mks2m
提出日時 2020-03-20 23:31:49
言語 Java
(openjdk 23)
結果
TLE  
実行時間 -
コード長 1,646 bytes
コンパイル時間 6,973 ms
コンパイル使用メモリ 78,532 KB
実行使用メモリ 104,444 KB
最終ジャッジ日時 2024-12-15 19:09:38
合計ジャッジ時間 63,418 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
56,888 KB
testcase_01 AC 46 ms
50,256 KB
testcase_02 AC 45 ms
50,360 KB
testcase_03 AC 59 ms
50,864 KB
testcase_04 AC 47 ms
50,072 KB
testcase_05 AC 54 ms
50,300 KB
testcase_06 AC 56 ms
50,788 KB
testcase_07 AC 89 ms
52,052 KB
testcase_08 AC 85 ms
52,276 KB
testcase_09 AC 85 ms
51,976 KB
testcase_10 AC 74 ms
51,124 KB
testcase_11 AC 53 ms
50,440 KB
testcase_12 AC 95 ms
52,464 KB
testcase_13 AC 194 ms
57,172 KB
testcase_14 AC 913 ms
63,712 KB
testcase_15 AC 1,222 ms
65,868 KB
testcase_16 AC 1,020 ms
66,032 KB
testcase_17 AC 916 ms
64,420 KB
testcase_18 AC 1,271 ms
63,932 KB
testcase_19 AC 531 ms
61,268 KB
testcase_20 AC 1,900 ms
67,388 KB
testcase_21 AC 746 ms
61,884 KB
testcase_22 AC 1,059 ms
64,476 KB
testcase_23 AC 547 ms
59,364 KB
testcase_24 TLE -
testcase_25 AC 1,950 ms
67,264 KB
testcase_26 AC 449 ms
59,196 KB
testcase_27 AC 808 ms
61,828 KB
testcase_28 AC 485 ms
59,300 KB
testcase_29 TLE -
testcase_30 AC 745 ms
61,504 KB
testcase_31 AC 1,426 ms
66,548 KB
testcase_32 AC 905 ms
63,912 KB
testcase_33 AC 834 ms
63,840 KB
testcase_34 AC 1,255 ms
65,852 KB
testcase_35 AC 1,256 ms
65,976 KB
testcase_36 AC 239 ms
58,736 KB
testcase_37 AC 188 ms
58,664 KB
testcase_38 AC 1,702 ms
66,216 KB
testcase_39 AC 671 ms
61,636 KB
testcase_40 AC 1,318 ms
68,316 KB
testcase_41 AC 370 ms
61,508 KB
testcase_42 AC 1,022 ms
63,936 KB
testcase_43 AC 620 ms
60,224 KB
testcase_44 AC 988 ms
63,812 KB
testcase_45 AC 800 ms
63,664 KB
testcase_46 AC 408 ms
61,312 KB
testcase_47 AC 949 ms
63,676 KB
testcase_48 AC 938 ms
63,804 KB
testcase_49 AC 1,495 ms
66,252 KB
testcase_50 AC 1,201 ms
65,752 KB
testcase_51 AC 1,110 ms
63,876 KB
testcase_52 AC 281 ms
59,256 KB
testcase_53 AC 365 ms
59,200 KB
testcase_54 AC 1,902 ms
68,776 KB
testcase_55 AC 441 ms
49,636 KB
testcase_56 TLE -
testcase_57 AC 938 ms
66,160 KB
testcase_58 TLE -
testcase_59 TLE -
testcase_60 AC 1,899 ms
67,160 KB
testcase_61 AC 1,411 ms
67,084 KB
testcase_62 AC 1,532 ms
56,988 KB
testcase_63 AC 46 ms
37,120 KB
testcase_64 AC 46 ms
104,444 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.util.LinkedHashSet;

public class Main {
	static int n, k;
	static Obj[] arr;

	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String[] sa = br.readLine().split(" ");
		n = Integer.parseInt(sa[0]);
		k = Integer.parseInt(sa[1]);
		sa = br.readLine().split(" ");
		arr = new Obj[n];
		for (int i = 0; i < n; i++) {
			Obj o = new Obj();
			o.p = Integer.parseInt(sa[i]);
			arr[i] = o;
			arr[i].next = (i + o.p) % n;
		}
		br.close();

		for (int i = 0; i < n; i++) {
			dfs(new LinkedHashSet<>(), i);
		}

		PrintWriter pw = new PrintWriter(System.out);
		for (int i = 0; i < n; i++) {
			pw.println(dfs2(i, k, 0) + 1);
		}
		pw.flush();
	}

	static long dfs2(int x, int r, long d) {
		if (arr[x].loop != 0) {
			d += r / arr[x].loop * arr[x].over;
			r %= arr[x].loop;
		}
		if (r > 0) {
			if (arr[x].next <= x) {
				return dfs2(arr[x].next, r - 1, d + 1);
			} else {
				return dfs2(arr[x].next, r - 1, d);
			}
		} else {
			return d * n + x;
		}
	}

	static void dfs(LinkedHashSet<Integer> his, int x) {
		if (arr[x].loop != 0) {
			return;
		}
		if (his.contains(x)) {
			Integer[] his2 = his.toArray(new Integer[0]);
			int pre = x;
			for (int i = his2.length - 1; i >= 0; i--) {
				arr[x].loop++;
				if (his2[i] >= pre) {
					arr[x].over++;
				}
				if (his2[i] == x) {
					break;
				}
				pre = his2[i];
			}
			his.remove(x);
		}
		his.add(x);
		dfs(his, arr[x].next);
	}

	static class Obj {
		int p, next;
		long loop, over;
	}
}
0