結果
問題 | No.2716 Falcon Method |
ユーザー | atcoder8 |
提出日時 | 2024-04-05 22:26:12 |
言語 | Rust (1.77.0 + proconio) |
結果 |
RE
|
実行時間 | - |
コード長 | 2,932 bytes |
コンパイル時間 | 11,640 ms |
コンパイル使用メモリ | 383,432 KB |
実行使用メモリ | 8,424 KB |
最終ジャッジ日時 | 2024-10-01 02:38:37 |
合計ジャッジ時間 | 15,113 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | RE | - |
testcase_02 | WA | - |
testcase_03 | AC | 1 ms
6,816 KB |
testcase_04 | AC | 1 ms
6,816 KB |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | AC | 2 ms
6,820 KB |
testcase_08 | AC | 2 ms
6,820 KB |
testcase_09 | WA | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | AC | 103 ms
7,296 KB |
testcase_13 | WA | - |
testcase_14 | AC | 128 ms
7,016 KB |
testcase_15 | AC | 90 ms
6,912 KB |
testcase_16 | AC | 109 ms
6,820 KB |
testcase_17 | AC | 128 ms
7,040 KB |
testcase_18 | WA | - |
testcase_19 | AC | 110 ms
6,816 KB |
testcase_20 | WA | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | AC | 158 ms
8,196 KB |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | AC | 159 ms
8,192 KB |
testcase_28 | AC | 156 ms
8,212 KB |
ソースコード
fn main() { let (n, q) = { let mut line = String::new(); std::io::stdin().read_line(&mut line).unwrap(); let mut iter = line.split_whitespace(); ( iter.next().unwrap().parse::<usize>().unwrap(), iter.next().unwrap().parse::<usize>().unwrap(), ) }; let s: Vec<char> = { let mut line = String::new(); std::io::stdin().read_line(&mut line).unwrap(); line.trim().chars().collect() }; let hwp: Vec<_> = (0..q) .map(|_| { let mut line = String::new(); std::io::stdin().read_line(&mut line).unwrap(); let mut iter = line.split_whitespace(); ( iter.next().unwrap().parse::<usize>().unwrap(), iter.next().unwrap().parse::<usize>().unwrap(), iter.next().unwrap().parse::<usize>().unwrap(), ) }) .collect(); // 文字列Sの通りに進んだときの累積距離 let mut prefix_sum = vec![(0, 0); n + 1]; for (i, &c) in s.iter().enumerate() { prefix_sum[i + 1] = prefix_sum[i]; if c == 'D' { prefix_sum[i + 1].0 += 1; } else { prefix_sum[i + 1].1 += 1; } } let calc_progress = |left: usize, right: usize| { ( prefix_sum[right].0 - prefix_sum[left].0, prefix_sum[right].1 - prefix_sum[left].1, ) }; let solve = |mut h: usize, mut w: usize, p: usize| { let progress_from_p_to_n = calc_progress(p, n); // 文字列の終端までにグリッドの端に辿り着く場合 if progress_from_p_to_n.0 >= h || progress_from_p_to_n.1 >= w { let mut ok = n; let mut ng = p; while ok.abs_diff(ng) > 1 { let mid = (ok + ng) / 2; let progress = calc_progress(p, mid); if progress.0 >= h || progress.1 >= w { ok = mid; } else { ng = mid; } } return ok % n; } h -= progress_from_p_to_n.0; w -= progress_from_p_to_n.1; let progress_from_0_to_n = calc_progress(0, n); let cycle_num = (h / progress_from_0_to_n.0).min(w / progress_from_0_to_n.1); h -= progress_from_0_to_n.0 * cycle_num; w -= progress_from_0_to_n.1 * cycle_num; if h == 0 || w == 0 { return 0; } let mut ok = n; let mut ng = 0; while ok.abs_diff(ng) > 1 { let mid = (ok + ng) / 2; let progress = calc_progress(0, mid); if progress.0 >= h || progress.1 >= w { ok = mid; } else { ng = mid; } } return ok % n; }; for &(h, w, p) in &hwp { println!("{}", solve(h, w, p)); } }