結果

問題 No.2152 [Cherry Anniversary 2] 19 Petals of Cherry
ユーザー titiatitia
提出日時 2022-12-09 04:09:32
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 358 ms / 1,000 ms
コード長 1,392 bytes
コンパイル時間 11,372 ms
コンパイル使用メモリ 379,952 KB
実行使用メモリ 109,416 KB
最終ジャッジ日時 2024-10-14 18:33:05
合計ジャッジ時間 25,246 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 188 ms
105,256 KB
testcase_01 AC 198 ms
109,184 KB
testcase_02 AC 188 ms
105,248 KB
testcase_03 AC 321 ms
109,392 KB
testcase_04 AC 218 ms
108,588 KB
testcase_05 AC 298 ms
109,340 KB
testcase_06 AC 221 ms
108,828 KB
testcase_07 AC 251 ms
108,448 KB
testcase_08 AC 272 ms
109,244 KB
testcase_09 AC 208 ms
109,364 KB
testcase_10 AC 277 ms
109,336 KB
testcase_11 AC 236 ms
109,388 KB
testcase_12 AC 200 ms
108,896 KB
testcase_13 AC 219 ms
108,532 KB
testcase_14 AC 258 ms
109,304 KB
testcase_15 AC 255 ms
108,436 KB
testcase_16 AC 240 ms
108,852 KB
testcase_17 AC 267 ms
109,208 KB
testcase_18 AC 272 ms
109,388 KB
testcase_19 AC 265 ms
109,336 KB
testcase_20 AC 194 ms
105,920 KB
testcase_21 AC 272 ms
109,336 KB
testcase_22 AC 235 ms
109,388 KB
testcase_23 AC 224 ms
108,840 KB
testcase_24 AC 291 ms
109,340 KB
testcase_25 AC 264 ms
109,344 KB
testcase_26 AC 258 ms
109,340 KB
testcase_27 AC 221 ms
109,380 KB
testcase_28 AC 189 ms
105,248 KB
testcase_29 AC 190 ms
105,116 KB
testcase_30 AC 191 ms
105,668 KB
testcase_31 AC 189 ms
106,628 KB
testcase_32 AC 196 ms
107,520 KB
testcase_33 AC 202 ms
108,536 KB
testcase_34 AC 210 ms
108,988 KB
testcase_35 AC 222 ms
109,168 KB
testcase_36 AC 241 ms
109,416 KB
testcase_37 AC 267 ms
109,336 KB
testcase_38 AC 275 ms
109,336 KB
testcase_39 AC 294 ms
109,340 KB
testcase_40 AC 304 ms
109,340 KB
testcase_41 AC 311 ms
109,336 KB
testcase_42 AC 324 ms
109,304 KB
testcase_43 AC 336 ms
109,340 KB
testcase_44 AC 345 ms
109,340 KB
testcase_45 AC 354 ms
109,340 KB
testcase_46 AC 358 ms
109,340 KB
testcase_47 AC 190 ms
105,248 KB
testcase_48 AC 294 ms
109,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fn main() {
    let max_length=524288;
    let mut mt=vec![vec![0;19];max_length];
    let mut tos=vec![Vec::new();20];

    for i in 0..max_length{
        for x in 0..19{
            let mut t=0;
            for y in x+1..19{
                if i & (1<<y) !=0{
                    t+=1;
                }
            }
            mt[i][x]=t%2;
        }
    }

    for i in 0..max_length{
        let mut u=0;
        for j in 0..19{
            if i & (1<<j)!=0{
                u+=1;
            }
        }
        tos[u].push(i);
    }

    for i in 0..20{
        tos[i].reverse();
    }

    let mut dp: Vec<Vec<i64>>=vec![vec![0;max_length];2];
    dp[0][0]=1;

    for i in 0..19{
        let a: Vec<usize> = {
            let mut line: String = String::new();
            std::io::stdin().read_line(&mut line).unwrap();
            line.split_whitespace()
                .map(|x| x.parse().unwrap())
                .collect()
        };

        for j in tos[i].clone(){

            for l in 0..2{
                if dp[l][j]!=0{
                    for k in 1..a.len(){
                        let x=a[k]-1;

                        if j & (1<<x)==0{
                            dp[l^mt[j][x]][j^(1<<x)]+=dp[l][j];
                        }
                    }
                }
            }
        }
    }

    println!("{} {}",dp[0][max_length-1],dp[1][max_length-1]);
}
0