UESTC - 878 温泉旅店 二维费用背包问题
Posted stupid_one
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了UESTC - 878 温泉旅店 二维费用背包问题相关的知识,希望对你有一定的参考价值。
http://acm.uestc.edu.cn/#/problem/show/878
设dp[i][j][k]表示在前i个数中,第一个得到的异或值是j,第二个人得到的异或值是k的方案数有多少种。
因为异或后的大小不确定,所以不能压缩数组,但是也不大。。可以过。
#include <cstdio> #include <cstdlib> #include <cstring> #include <cmath> #include <algorithm> #include <assert.h> #define ios ios::sync_with_stdio(false) using namespace std; #define inf (0x3f3f3f3f) typedef long long int LL; #include <iostream> #include <sstream> #include <vector> #include <set> #include <map> #include <queue> #include <string> #include <bitset> const int maxn = 1e2 + 20; int a[maxn], n; int ans; int dp[20][500 + 20][500 + 20]; void work() { ans = 0; for (int i = 1; i <= n; ++i) { scanf("%d", &a[i]); } dp[0][0][0] = true; for (int i = 1; i <= n; ++i) { for (int j = 0; j <= 500; ++j) { for (int k = 0; k <= 500; ++k) { if (dp[i - 1][j][k]) { dp[i][j][k] += dp[i - 1][j][k]; dp[i][j ^ a[i]][k] += dp[i - 1][j][k]; dp[i][j][k ^ a[i]] += dp[i - 1][j][k]; // if (j <= k) ans++; } } } } for (int i = 0; i <= 500; ++i) { for (int j = 0; j <= 500; ++j) { if (dp[n][i][j] && i <= j) { ans += dp[n][i][j]; } } } cout << ans << endl; } int main() { #ifdef local freopen("data.txt", "r", stdin); // freopen("data.txt", "w", stdout); #endif while (scanf("%d", &n) != EOF) work(); return 0; }
以上是关于UESTC - 878 温泉旅店 二维费用背包问题的主要内容,如果未能解决你的问题,请参考以下文章