UVa 11012 - Cosmic Cabbages (机智地枚举)

题意

找出两个点的最大的Manhattan Distance

思路

仰慕帆神。

求两个点的距离|x1 - x2| + |y1 - y2| + |z1 - z2|,可以通过去绝对值,得到八个式子,其中的最大值就是答案。

不用担心不存在的形式计算出来的答案会影响结果,因为最后的答案一定会比这种答案大。

代码

 
 
  1. #include <cstdio>
  2. #include <stack>
  3. #include <list>
  4. #include <set>
  5. #include <iostream>
  6. #include <string>
  7. #include <vector>
  8. #include <queue>
  9. #include <functional>
  10. #include <cstring>
  11. #include <iomanip>
  12. #include <algorithm>
  13. #include <cctype>
  14. #include <string>
  15. #include <map>
  16. #include <cmath>
  17. using namespace std;
  18. #define LL long long
  19. #define ULL unsigned long long
  20. #define SZ(x) (int)x.size()
  21. #define Lowbit(x) ((x) & (-x))
  22. #define MP(a, b) make_pair(a, b)
  23. #define MS(arr, num) memset(arr, num, sizeof(arr))
  24. #define PB push_back
  25. #define F first
  26. #define S second
  27. #define ROP freopen("input.txt", "r", stdin);
  28. #define MID(a, b) (a + ((b - a) >> 1))
  29. #define LC rt << 1, l, mid
  30. #define RC rt << 1|1, mid + 1, r
  31. #define LRT rt << 1
  32. #define RRT rt << 1|1
  33. #define BitCount(x) __builtin_popcount(x)
  34. #define BitCountll(x) __builtin_popcountll(x)
  35. #define LeftPos(x) 32 - __builtin_clz(x) - 1
  36. #define LeftPosll(x) 64 - __builtin_clzll(x) - 1
  37. const double PI = acos(-1.0);
  38. const int INF = 0x3f3f3f3f;
  39. const double eps = 1e-8;
  40. const int MAXN = 100000 + 10;
  41. const int MOD = 1000007;
  42. const int dir[][2] = { {-1, 0}, {1, 0}, {0, -1}, {0, 1} };
  43. typedef pair<int, int> pii;
  44. typedef vector<int>::iterator viti;
  45. typedef vector<pii>::iterator vitii;
  46. struct ARRARY
  47. {
  48. int arr[3];
  49. }num[MAXN];
  50. int main()
  51. {
  52. //ROP;
  53. int T, i, j, n, cases = 0;
  54. scanf("%d", &T);
  55. while (T--)
  56. {
  57. scanf("%d", &n);
  58. for (i = 0; i < n; i++)
  59. for (j = 0; j < 3; j++) scanf("%d", &num[i].arr[j]);
  60. int ans = -INF;
  61. for (i = 0; i < (1<<3); i++)
  62. {
  63. int maxValue = -INF, minValue = INF;
  64. for (j = 0; j < n; j++)
  65. {
  66. int sum = 0;
  67. for (int k = 0; k < 3; k++)
  68. {
  69. if ((1<<k) & i) sum += num[j].arr[k];
  70. else sum -= num[j].arr[k];
  71. }
  72. maxValue = max(maxValue, sum); minValue = min(minValue, sum);
  73. }
  74. ans = max(ans, maxValue - minValue);
  75. }
  76. printf("Case #%d: %d\n", ++cases, ans);
  77. }
  78. return 0;
  79. }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值