結果

問題 No.1537 私の代わりに仕事やっといてください。
ユーザー 57tggx
提出日時 2021-06-05 23:01:19
言語 Rust
(1.83.0 + proconio)
結果
AC  
実行時間 75 ms / 2,000 ms
コード長 2,991 bytes
コンパイル時間 12,002 ms
コンパイル使用メモリ 377,712 KB
実行使用メモリ 18,140 KB
最終ジャッジ日時 2024-11-26 17:43:40
合計ジャッジ時間 13,064 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 9
権限があれば一括ダウンロードができます

ソースコード

diff #
プレゼンテーションモードにする

#[allow(unused_macros)]
macro_rules! debug {
($($a:expr),* $(,)*) => {
#[cfg(debug_assertions)]
eprintln!(concat!($("| ", stringify!($a), "={:?} "),*, "|"), $(&$a),*);
};
}
#[derive(Debug)]
struct Input {
n: usize,
a: Vec<i64>,
}
fn main() {
let Input { n, a } = Input::read(std::io::stdin().lock());
let mut v: Vec<_> = a.into_iter().enumerate().collect();
v.sort_by(|(_, x), (_, y)| x.cmp(y));
let mut v: Vec<_> = v.into_iter().map(|(i, _)| i + 1).collect();
v.reverse(); //
println!(
"{}",
v.iter()
.chain(v.iter().rev())
.chain(v.iter())
.skip_while(|&&x| x != 1)
.step_by(2)
.take(n + 1)
.map(ToString::to_string)
.collect::<Vec<_>>()
.join(" ")
);
}
/*
*
* */
impl Input {
fn read<T: std::io::BufRead>(mut input: T) -> Input {
let n = {
let mut buffer = String::new();
input.read_line(&mut buffer).unwrap();
match &split(&buffer).unwrap()[..] {
&[n] => n.parse().unwrap(),
_ => panic!("input format error: N"),
}
};
let a: Vec<i64> = {
let mut buffer = String::new();
input.read_line(&mut buffer).unwrap();
split(&buffer)
.unwrap()
.into_iter()
.map(|x| x.parse().unwrap())
.collect()
};
assert!(matches!(n, 2..=200_000));
assert_eq!(n, a.len());
assert!(a.iter().all(|x| matches!(x, 1..=1_000_000_000)));
{
let mut tmp = a.clone();
tmp.sort();
assert!(tmp.windows(2).all(|x| x[0] != x[1]));
}
Input { n: n, a: a }
}
}
fn split(s: &str) -> Option<Vec<&str>> {
enum State {
Word(usize),
Space,
End,
}
let mut state = State::Word(0);
let mut ret = Vec::new();
for (i, c) in s.char_indices() {
let prev = match state {
State::End => return None,
State::Word(i) => i,
State::Space => {
state = State::Word(i);
i
}
};
if c == ' ' || c == '\n' {
ret.push(&s[prev..i]);
state = if c == ' ' { State::Space } else { State::End };
}
}
matches!(state, State::End).then(|| ret)
}
#[test]
fn test_split() {
assert_eq!(split("word\n"), Some(vec!["word"]));
assert_eq!(
split("many words separated\n"),
Some(vec!["many", "words", "separated"])
);
assert_eq!(
split(" extra spaces \n"),
Some(vec!["", "extra", "", "spaces", ""])
);
assert_eq!(split("no line feed"), None);
assert_eq!(split("extra characters\nafter line feed"), None);
}
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
0