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. }
  74. cout << ans << ' ';
  75. }
  76. cout << '\n';
  77. }
  78.  
  79. signed main() {
  80. #ifdef LOCAL
  81. freopen("in.txt", "r", stdin);
  82. // freopen("out.txt", "w", stdout);
  83. // freopen("in.txt", "w", stdout); /* для стресс-ввода */
  84. #endif
  85. // cin.tie(0)->sync_with_stdio(0);
  86. int t = 1;
  87. // cin >> t;
  88. while (t --> 0) {
  89. solve();
  90. }
  91. }
Success #stdin #stdout 0.01s 5288KB
stdin
7 4
1 8 2 2 4 16 1
stdout
57 75 69 72 60 45 21