fork(1) download
  1. #ifndef LOCAL
  2. #pragma GCC optimize("Ofast,unroll-loops")
  3. #endif
  4. #include <climits>
  5. #include <unordered_map>
  6. #include <random>
  7. #include <chrono>
  8. #include <numeric>
  9. #include <iostream>
  10. #include <vector>
  11. #include <algorithm>
  12. #include <map>
  13. #include <queue>
  14. #include <deque>
  15. #include <stack>
  16. #include <functional>
  17. #include <bitset>
  18. #include <string>
  19. #include <sstream>
  20. #include <fstream>
  21. #include <iomanip>
  22. #include <cmath>
  23. #include <cassert>
  24. #include <list>
  25. #include <forward_list>
  26. #include <set>
  27. #include <unordered_set>
  28. #include <cstdint>
  29. #include <ext/pb_ds/assoc_container.hpp>
  30. #ifndef LOCAL
  31. #pragma GCC target("avx,avx2,fma")
  32. #endif
  33.  
  34. using namespace std;
  35. using namespace __gnu_pbds;
  36.  
  37. using ll = long long;
  38. using ull = unsigned long long;
  39. using ld = long double;
  40.  
  41. #define all(x) begin(x), end(x)
  42. #ifdef LOCAL
  43. #define isz(x) ((int)size(x))
  44. #else
  45. int isz(const auto& x) {
  46. return x.size();
  47. }
  48. #endif
  49. #define X first
  50. #define Y second
  51.  
  52. int f(const vector<int>& a, int s, int p) {
  53. int res = 0;
  54. int x = (1 << p);
  55. for (int i = s; i < isz(a); ++i) {
  56. if (!(x & a[i])) {
  57. x |= a[i];
  58. res += i + 1;
  59. }
  60. }
  61. return res;
  62. }
  63.  
  64. void solve() {
  65. int n, b;
  66. cin >> n >> b;
  67. vector<int> a(n);
  68. for (auto& it : a) cin >> it;
  69. for (int i = 0; i < n; ++i) {
  70. int ans = 0;
  71. for (int j = 0; j < b; ++j) {
  72. ans += f(a, i, j);
  73. cout << f(a,i,j) << ' ';
  74. }
  75. cout << ans << '\n';
  76. }
  77. cout << '\n';
  78. }
  79.  
  80. signed main() {
  81. #ifdef LOCAL
  82. freopen("in.txt", "r", stdin);
  83. // freopen("out.txt", "w", stdout);
  84. // freopen("in.txt", "w", stdout); /* для стресс-ввода */
  85. #endif
  86. // cin.tie(0)->sync_with_stdio(0);
  87. int t = 1;
  88. // cin >> t;
  89. while (t --> 0) {
  90. solve();
  91. }
  92. }
Success #stdin #stdout 0.01s 5288KB
stdin
7 4
1 8 2 2 4 16 1
stdout
16 14 12 15 57
16 20 18 21 75
14 18 16 21 69
15 18 17 22 72
11 18 13 18 60
6 13 13 13 45
0 7 7 7 21