結果

問題 No.2152 [Cherry Anniversary 2] 19 Petals of Cherry
ユーザー titiatitia
提出日時 2022-12-09 02:49:55
言語 Rust
(1.77.0 + proconio)
結果
TLE  
実行時間 -
コード長 1,159 bytes
コンパイル時間 11,918 ms
コンパイル使用メモリ 379,432 KB
実行使用メモリ 104,368 KB
最終ジャッジ日時 2024-10-14 18:32:12
合計ジャッジ時間 45,518 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 214 ms
104,192 KB
testcase_01 AC 365 ms
104,320 KB
testcase_02 AC 206 ms
100,184 KB
testcase_03 AC 822 ms
104,212 KB
testcase_04 AC 735 ms
104,200 KB
testcase_05 AC 734 ms
104,320 KB
testcase_06 AC 724 ms
104,300 KB
testcase_07 AC 656 ms
104,320 KB
testcase_08 AC 612 ms
104,256 KB
testcase_09 AC 512 ms
104,320 KB
testcase_10 AC 732 ms
104,320 KB
testcase_11 AC 702 ms
104,200 KB
testcase_12 AC 483 ms
104,244 KB
testcase_13 AC 535 ms
104,192 KB
testcase_14 AC 642 ms
104,248 KB
testcase_15 AC 618 ms
104,320 KB
testcase_16 AC 544 ms
104,192 KB
testcase_17 AC 588 ms
104,120 KB
testcase_18 AC 731 ms
104,192 KB
testcase_19 AC 690 ms
104,224 KB
testcase_20 AC 400 ms
104,224 KB
testcase_21 AC 525 ms
104,320 KB
testcase_22 AC 593 ms
104,212 KB
testcase_23 AC 581 ms
104,212 KB
testcase_24 AC 836 ms
104,320 KB
testcase_25 AC 565 ms
104,240 KB
testcase_26 AC 852 ms
104,320 KB
testcase_27 AC 602 ms
104,368 KB
testcase_28 AC 226 ms
104,320 KB
testcase_29 AC 254 ms
104,192 KB
testcase_30 AC 292 ms
104,320 KB
testcase_31 AC 322 ms
104,316 KB
testcase_32 AC 351 ms
104,320 KB
testcase_33 AC 383 ms
104,192 KB
testcase_34 AC 415 ms
104,240 KB
testcase_35 AC 452 ms
104,140 KB
testcase_36 AC 526 ms
104,320 KB
testcase_37 AC 661 ms
104,284 KB
testcase_38 AC 753 ms
104,244 KB
testcase_39 AC 855 ms
104,304 KB
testcase_40 AC 943 ms
104,320 KB
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 TLE -
testcase_46 TLE -
testcase_47 AC 199 ms
100,128 KB
testcase_48 AC 859 ms
104,292 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
warning: unnecessary parentheses around index expression
  --> src/main.rs:38:32
   |
38 | ...                   dp[(l^mt[j][x])][j|(1<<x)]+=dp[l][j]
   |                          ^          ^
   |
   = note: `#[warn(unused_parens)]` on by default
help: remove these parentheses
   |
38 -                             dp[(l^mt[j][x])][j|(1<<x)]+=dp[l][j]
38 +                             dp[l^mt[j][x]][j|(1<<x)]+=dp[l][j]
   |

ソースコード

diff #

fn main() {
    let max_length=524288;
    let mut mt=vec![vec![0;19];max_length];

    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;
        }
    }

    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 jj in 0..max_length{
            let j=max_length-1-jj;

            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