結果

問題 No.4 おもりと天秤
ユーザー Maricom_tkgMaricom_tkg
提出日時 2018-11-05 00:58:35
言語 Rust
(1.77.0)
結果
AC  
実行時間 9 ms / 5,000 ms
コード長 1,044 bytes
コンパイル時間 10,615 ms
コンパイル使用メモリ 392,700 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-04-30 21:59:12
合計ジャッジ時間 11,621 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 0 ms
6,816 KB
testcase_01 AC 1 ms
6,812 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 0 ms
6,940 KB
testcase_04 AC 0 ms
6,940 KB
testcase_05 AC 8 ms
6,944 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 8 ms
6,940 KB
testcase_08 AC 1 ms
6,944 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 9 ms
6,944 KB
testcase_11 AC 1 ms
6,944 KB
testcase_12 AC 0 ms
6,944 KB
testcase_13 AC 1 ms
6,940 KB
testcase_14 AC 0 ms
6,940 KB
testcase_15 AC 1 ms
6,944 KB
testcase_16 AC 1 ms
6,944 KB
testcase_17 AC 1 ms
6,940 KB
testcase_18 AC 4 ms
6,940 KB
testcase_19 AC 7 ms
6,940 KB
testcase_20 AC 8 ms
6,944 KB
testcase_21 AC 7 ms
6,940 KB
testcase_22 AC 7 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::io::Read;

fn main() {
    let mut buf = String::new();
    std::io::stdin().read_to_string(&mut buf).unwrap();
    
    let mut iter = buf.split_whitespace().map(|w| w.parse::<usize>().unwrap());
    
    iter.next().unwrap();
    let weights = iter;
    
    let mut remaining: usize = weights.clone().sum();
    if remaining % 2 == 1 {
        println!("impossible");
        return
    }
    
    let half: usize = remaining / 2;
    let mut sums: Vec<usize> = vec![0];
    
    for weight in weights {
        let mut new_sums: Vec<usize> = Vec::new();
        remaining -= weight;
        
        for sum in sums.into_iter() {
            let new_sum: usize = sum + weight;
            if new_sum <= half {
                new_sums.push(new_sum);
            }
            if remaining + sum >= half {
                new_sums.push(sum);
            }
        }
        new_sums.sort();
        new_sums.dedup();
        sums = new_sums;
    }
    
    println!("{}", if sums.contains(&half) {"possible"} else {"impossible"});
}
0