結果
問題 | No.592 括弧の対応 (2) |
ユーザー | phspls |
提出日時 | 2020-05-08 22:26:00 |
言語 | Rust (1.77.0 + proconio) |
結果 |
AC
|
実行時間 | 225 ms / 5,000 ms |
コード長 | 815 bytes |
コンパイル時間 | 14,185 ms |
コンパイル使用メモリ | 401,632 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-04 00:55:30 |
合計ジャッジ時間 | 16,283 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 224 ms
6,944 KB |
testcase_02 | AC | 225 ms
6,944 KB |
testcase_03 | AC | 224 ms
6,940 KB |
ソースコード
fn main() { let mut n = String::new(); std::io::stdin().read_line(&mut n).ok(); let n: usize = n.trim().parse().unwrap(); let mut s = String::new(); std::io::stdin().read_line(&mut s).ok(); let mut pairdata: Vec<usize> = vec![0; n]; let mut leftside: Vec<usize> = vec![]; let mut rightside: Vec<usize> = vec![]; s.trim().chars().enumerate().for_each(|pair| { if pair.1 == '(' { leftside.push(pair.0); } else { if leftside.is_empty() { rightside.push(pair.0); } else { let leftval = leftside.pop().unwrap(); pairdata[leftval] = pair.0 + 1; pairdata[pair.0] = leftval + 1; } } }); pairdata.iter().for_each(|val| println!("{}", val)); }