結果
問題 | No.2820 Non-Preferred IUPAC Nomenclature |
ユーザー | magurofly |
提出日時 | 2024-07-26 22:14:22 |
言語 | Rust (1.83.0 + proconio) |
結果 |
AC
|
実行時間 | 181 ms / 2,000 ms |
コード長 | 567 bytes |
コンパイル時間 | 13,502 ms |
コンパイル使用メモリ | 390,192 KB |
実行使用メモリ | 77,560 KB |
最終ジャッジ日時 | 2024-07-26 22:14:42 |
合計ジャッジ時間 | 19,362 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 22 |
コンパイルメッセージ
warning: variable `N` should have a snake case name --> src/main.rs:4:3 | 4 | N: usize, | ^ help: convert the identifier to snake case: `n` | = note: `#[warn(non_snake_case)]` on by default
ソースコード
use proconio::input; fn main() { input! { N: usize, edges: [[String; 4]; N], } let mut graph = vec![vec![]; N]; for i in 0 .. N { for x in &edges[i] { if x != "H" { graph[i].push(x.parse::<usize>().unwrap() - 1); } } } fn dfs(graph: &[Vec<usize>], u: usize, p: usize, ans: &mut String) { for &v in &graph[u] { if v != p { ans.push('('); dfs(graph, v, u, ans); ans.push_str("yl)"); } } ans.push_str("meth"); } let mut ans = String::new(); dfs(&graph, 0, 0, &mut ans); ans.push_str("ane"); println!("{}", ans); }