結果
問題 | No.699 ペアでチームを作ろう2 |
ユーザー | hatoo |
提出日時 | 2018-08-16 14:44:05 |
言語 | Rust (1.77.0 + proconio) |
結果 |
AC
|
実行時間 | 519 ms / 1,000 ms |
コード長 | 4,669 bytes |
コンパイル時間 | 13,450 ms |
コンパイル使用メモリ | 379,376 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-02 04:58:21 |
合計ジャッジ時間 | 18,903 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 1 ms
5,248 KB |
testcase_04 | AC | 19 ms
5,248 KB |
testcase_05 | AC | 1 ms
5,248 KB |
testcase_06 | AC | 1 ms
5,248 KB |
testcase_07 | AC | 498 ms
5,248 KB |
testcase_08 | AC | 498 ms
5,248 KB |
testcase_09 | AC | 515 ms
5,248 KB |
testcase_10 | AC | 519 ms
5,248 KB |
testcase_11 | AC | 497 ms
5,248 KB |
testcase_12 | AC | 499 ms
5,248 KB |
testcase_13 | AC | 499 ms
5,248 KB |
testcase_14 | AC | 498 ms
5,248 KB |
ソースコード
#[doc = " https://github.com/hatoo/competitive-rust-snippets"] #[allow(unused_imports)] use std::cmp::{max, min, Ordering}; #[allow(unused_imports)] use std::collections::{BTreeMap, BTreeSet, BinaryHeap, HashMap, HashSet, VecDeque}; #[allow(unused_imports)] use std::io::{stdin, stdout, BufWriter, Write}; #[allow(unused_imports)] use std::iter::FromIterator; mod util { use std::fmt::Debug; use std::io::{stdin, stdout, BufWriter, StdoutLock}; use std::str::FromStr; #[allow(dead_code)] pub fn line() -> String { let mut line: String = String::new(); stdin().read_line(&mut line).unwrap(); line.trim().to_string() } #[allow(dead_code)] pub fn chars() -> Vec<char> { line().chars().collect() } #[allow(dead_code)] pub fn gets<T: FromStr>() -> Vec<T> where <T as FromStr>::Err: Debug, { let mut line: String = String::new(); stdin().read_line(&mut line).unwrap(); line.split_whitespace() .map(|t| t.parse().unwrap()) .collect() } #[allow(dead_code)] pub fn with_bufwriter<F: FnOnce(BufWriter<StdoutLock>) -> ()>(f: F) { let out = stdout(); let writer = BufWriter::new(out.lock()); f(writer) } } #[allow(unused_macros)] macro_rules ! get { ( $ t : ty ) => { { let mut line : String = String :: new ( ) ; stdin ( ) . read_line ( & mut line ) . unwrap ( ) ; line . trim ( ) . parse ::<$ t > ( ) . unwrap ( ) } } ; ( $ ( $ t : ty ) ,* ) => { { let mut line : String = String :: new ( ) ; stdin ( ) . read_line ( & mut line ) . unwrap ( ) ; let mut iter = line . split_whitespace ( ) ; ( $ ( iter . next ( ) . unwrap ( ) . parse ::<$ t > ( ) . unwrap ( ) , ) * ) } } ; ( $ t : ty ; $ n : expr ) => { ( 0 ..$ n ) . map ( | _ | get ! ( $ t ) ) . collect ::< Vec < _ >> ( ) } ; ( $ ( $ t : ty ) ,*; $ n : expr ) => { ( 0 ..$ n ) . map ( | _ | get ! ( $ ( $ t ) ,* ) ) . collect ::< Vec < _ >> ( ) } ; ( $ t : ty ;; ) => { { let mut line : String = String :: new ( ) ; stdin ( ) . read_line ( & mut line ) . unwrap ( ) ; line . split_whitespace ( ) . map ( | t | t . parse ::<$ t > ( ) . unwrap ( ) ) . collect ::< Vec < _ >> ( ) } } ; ( $ t : ty ;; $ n : expr ) => { ( 0 ..$ n ) . map ( | _ | get ! ( $ t ;; ) ) . collect ::< Vec < _ >> ( ) } ; } #[allow(unused_macros)] macro_rules ! debug { ( $ ( $ a : expr ) ,* ) => { eprintln ! ( concat ! ( $ ( stringify ! ( $ a ) , " = {:?}, " ) ,* ) , $ ( $ a ) ,* ) ; } } const BIG_STACK_SIZE: bool = true; #[allow(dead_code)] fn main() { use std::thread; if BIG_STACK_SIZE { thread::Builder::new() .stack_size(32 * 1024 * 1024) .name("solve".into()) .spawn(solve) .unwrap() .join() .unwrap(); } else { solve(); } } #[doc = " Ported from [bluss/permutohedron](https://github.com/bluss/permutohedron)"] pub trait LexicalPermutation { #[doc = " at the last ordered permutation."] fn next_permutation(&mut self) -> bool; #[doc = " Return \\`true\\` if the slice was permuted, \\`false\\` if it is already"] #[doc = " at the first ordered permutation."] fn prev_permutation(&mut self) -> bool; } impl<T> LexicalPermutation for [T] where T: Ord, { #[doc = " Original author in Rust: Thomas Backman <serenity@exscape.org>"] fn next_permutation(&mut self) -> bool { if self.len() < 2 { return false; } let mut i = self.len() - 1; while i > 0 && self[i - 1] >= self[i] { i -= 1; } if i == 0 { return false; } let mut j = self.len() - 1; while j >= i && self[j] <= self[i - 1] { j -= 1; } self.swap(j, i - 1); self[i..].reverse(); true } fn prev_permutation(&mut self) -> bool { if self.len() < 2 { return false; } let mut i = self.len() - 1; while i > 0 && self[i - 1] <= self[i] { i -= 1; } if i == 0 { return false; } self[i..].reverse(); let mut j = self.len() - 1; while j >= i && self[j - 1] < self[i - 1] { j -= 1; } self.swap(i - 1, j); true } } fn solve() { let n = get!(usize); let mut xs = get!(u64;;); xs.sort(); let mut ans = 0; while { let sum = (0..n / 2) .map(|i| xs[i] + xs[i + n / 2]) .fold(0, |a, b| a ^ b); ans = max(ans, sum); xs[n / 2..].reverse(); xs.next_permutation() } {} println!("{}", ans); }