首页 > 代码库 > UESTC - 878 温泉旅店 二维费用背包问题
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 温泉旅店 二维费用背包问题
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。