結果

問題 No.1189 Sum is XOR
ユーザー pockynypockyny
提出日時 2020-08-22 16:45:24
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 242 ms / 2,000 ms
コード長 688 bytes
コンパイル時間 561 ms
コンパイル使用メモリ 69,348 KB
実行使用メモリ 97,664 KB
最終ジャッジ日時 2024-10-15 10:46:11
合計ジャッジ時間 4,678 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 231 ms
97,664 KB
testcase_01 AC 198 ms
97,664 KB
testcase_02 AC 186 ms
97,664 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 175 ms
97,664 KB
testcase_12 AC 186 ms
97,664 KB
testcase_13 AC 224 ms
97,536 KB
testcase_14 AC 211 ms
97,664 KB
testcase_15 AC 210 ms
97,664 KB
testcase_16 AC 228 ms
97,664 KB
testcase_17 AC 188 ms
97,664 KB
testcase_18 AC 170 ms
97,664 KB
testcase_19 AC 219 ms
97,664 KB
testcase_20 AC 242 ms
97,664 KB
testcase_21 AC 134 ms
97,664 KB
testcase_22 AC 133 ms
97,536 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:26:30: warning: iteration 1100 invokes undefined behavior [-Waggressive-loop-optimizations]
   26 |         (ans += dp[1024][i][k]) %= mod;
      |                 ~~~~~~~~~~~~~^
main.cpp:25:14: note: within this loop
   25 |     for(i=0;i<1924;i++){
      |             ~^~~~~

ソースコード

diff #

#include <iostream>

using namespace std;
typedef long long ll;
ll cnt[2000] = {},dp[1100][1100][11],mod = 998244353;
int main(){
    int i,j,l,n,k; cin >> n >> k;
    if(k>10){
        cout << 0 << endl;
        return 0;
    }
    for(i=0;i<n;i++){
        int a; cin >> a; cnt[a]++;
    }
    dp[0][0][0] = 1;
    for(i=0;i<1024;i++){
        for(j=0;j<1024;j++){
            for(l=0;l<=k;l++){
                (dp[i + 1][j][l] += dp[i][j][l]) %= mod;
                if((i & j)==0) (dp[(i + 1)][(i|j)][l + 1] += cnt[i]*dp[i][j][l]) %= mod;
            }
        }
    }
    ll ans = 0;
    for(i=0;i<1924;i++){
        (ans += dp[1024][i][k]) %= mod;
    }
    cout << ans << endl;
}
0