QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#302855#7977. 彩虹航线hos_lyric#61 791ms83804kbC++147.4kb2024-01-11 14:15:502024-07-04 03:17:41

Judging History

你现在查看的是最新测评结果

  • [2024-07-04 03:17:41]
  • 评测
  • 测评结果:61
  • 用时:791ms
  • 内存:83804kb
  • [2024-01-11 14:15:50]
  • 提交

answer

#include <cassert>
#include <cmath>
#include <cstdint>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <algorithm>
#include <bitset>
#include <complex>
#include <deque>
#include <functional>
#include <iostream>
#include <limits>
#include <map>
#include <numeric>
#include <queue>
#include <random>
#include <set>
#include <sstream>
#include <string>
#include <unordered_map>
#include <unordered_set>
#include <utility>
#include <vector>

using namespace std;

using Int = long long;

template <class T1, class T2> ostream &operator<<(ostream &os, const pair<T1, T2> &a) { return os << "(" << a.first << ", " << a.second << ")"; };
template <class T> ostream &operator<<(ostream &os, const vector<T> &as) { const int sz = as.size(); os << "["; for (int i = 0; i < sz; ++i) { if (i >= 256) { os << ", ..."; break; } if (i > 0) { os << ", "; } os << as[i]; } return os << "]"; }
template <class T> void pv(T a, T b) { for (T i = a; i != b; ++i) cerr << *i << " "; cerr << endl; }
template <class T> bool chmin(T &t, const T &f) { if (t > f) { t = f; return true; } return false; }
template <class T> bool chmax(T &t, const T &f) { if (t < f) { t = f; return true; } return false; }
#define COLOR(s) ("\x1b[" s "m")


#include <chrono>

#ifdef LOCAL
mt19937_64 rng(58);
#else
mt19937_64 rng(chrono::steady_clock::now().time_since_epoch().count());
#endif


namespace bm {
constexpr int LIM_N0 = 210;
constexpr int LIM_N1 = 210;
constexpr int LIM_M = 40010;
int n0, n1, m, as[LIM_M], bs[LIM_M];
int to[LIM_N0], fr[LIM_N1], tof;
int pt[LIM_N0 + 2], zu[LIM_M], used[LIM_N0], lev[LIM_N0], que[LIM_N0], *qb, *qe;
void init(int n0_, int n1_) {
  n0 = n0_; n1 = n1_; m = 0;
}
int ae(int u, int v) {
  as[m] = u; bs[m] = v; return m++;
}
int augment(int u) {
  used[u] = tof;
  for (int j = pt[u]; j < pt[u + 1]; ++j) {
    const int v = zu[j];
    const int w = fr[v];
    if (!~w || (used[w] != tof && lev[u] < lev[w] && augment(w))) {
      to[u] = v; fr[v] = u; return 1;
    }
  }
  return 0;
}
int run() {
  memset(pt, 0, (n0 + 2) * sizeof(int));
  for (int i = 0; i < m; ++i) ++pt[as[i] + 2];
  for (int u = 2; u <= n0; ++u) pt[u + 1] += pt[u];
  for (int i = 0; i < m; ++i) zu[pt[as[i] + 1]++] = bs[i];
  memset(to, ~0, n0 * sizeof(int));
  memset(fr, ~0, n1 * sizeof(int));
  memset(used, ~0, n0 * sizeof(int));
  for (tof = 0; ; ) {
    qb = qe = que; memset(lev, ~0, n0 * sizeof(int));
    for (int u = 0; u < n0; ++u) if (!~to[u]) lev[*qe++ = u] = 0;
    for (; qb != qe; ) {
      const int u = *qb++;
      for (int j = pt[u]; j < pt[u + 1]; ++j) {
        const int w = fr[zu[j]];
        if (~w && !~lev[w]) lev[*qe++ = w] = lev[u] + 1;
      }
    }
    int f = 0;
    for (int u = 0; u < n0; ++u) if (!~to[u]) f += augment(u);
    if (!f) return tof;
    tof += f;
  }
}

// s: true, t: false (s: reachable from unmatched left)
// vertex cover: (0: false, 0: true)
// independent set: (0: true, 1: false)
bool side0[LIM_N0], side1[LIM_N1];
void dfs(int u) {
  if (!side0[u]) {
    side0[u] = true;
    for (int j = pt[u]; j < pt[u + 1]; ++j) {
      const int v = zu[j];
      if (!side1[v]) {
        side1[v] = true;
        const int w = fr[v];
        if (~w) dfs(w);
      }
    }
  }
}
void minCut() {
  memset(side0, 0, n0 * sizeof(bool));
  memset(side1, 0, n1 * sizeof(bool));
  for (int u = 0; u < n0; ++u) if (!~to[u]) dfs(u);
}
}  // namespace bm


int N, M, K;
vector<int> A, B;
vector<vector<int>> C;


vector<int> sub3() {
  assert(K == 2);
  vector<vector<int>> G(N + N);
  for (int i = 0; i < M; ++i) {
    G[A[i]].push_back(i);
    G[N + B[i]].push_back(i);
  }
  vector<int> ans(M, -1);
  vector<int> vis(N + N, 0);
  for (int phase = 1; phase <= 2; ++phase) {
    for (int r = 0; r < N + N; ++r) if (!vis[r] && (int)G[r].size() == phase) {
      vector<int> us, is;
      for (int bef = -1, u = r; !vis[u]; ) {
        vis[u] = true;
        us.push_back(u);
        if (us.size() >= 2 && G[u].size() == 1) break;
        for (const int i : G[u]) {
          const int v = A[i] ^ (N + B[i]) ^ u;
          if (bef != v) {
            is.push_back(i);
            bef = u;
            u = v;
            goto found;
          }
        }
        assert(false);
       found:{}
      }
// cerr<<"us = "<<us<<", is = "<<is<<endl;
      const int len = is.size();
      for (int k0 = 0; k0 < 2; ++k0) {
        vector<vector<int>> prv(len, vector<int>(2, -1));
        prv[0][k0] = -2;
        for (int j = 0; j < len - 1; ++j) {
          for (int k = 0; k < 2; ++k) if (~prv[j][k]) {
            for (int kk = 0; kk < 2; ++kk) if (C[is[j]][k] != C[is[j + 1]][kk]) {
              prv[j + 1][kk] = k;
            }
          }
        }
        for (int k1 = 0; k1 < 2; ++k1) if (~prv[len - 1][k1]) {
          if (us.size() == is.size() && C[is[len - 1]][k1] == C[is[0]][k0]) {
            continue;
          }
          for (int j = len - 1, k = k1; j >= 0; --j) {
            ans[is[j]] = C[j][k];
            k = prv[j][k];
          }
          goto solved;
        }
      }
     solved:{}
    }
  }
  return ans;
}


vector<int> uso() {
  int limC = 0;
  for (int i = 0; i < M; ++i) {
    for (int k = 0; k < K; ++k) {
      chmax(limC, C[i][k]);
    }
  }
  ++limC;
  vector<vector<int>> iss(limC);
  for (int i = 0; i < M; ++i) {
    for (int k = 0; k < K; ++k) {
      iss[C[i][k]].push_back(i);
    }
  }
  for (; ; ) {
    vector<int> cs(limC);
    for (int c = 0; c < limC; ++c) cs[c] = c;
    shuffle(cs.begin(), cs.end(), rng);
    stable_sort(cs.begin(), cs.end(), [&](int c0, int c1) -> bool {
      return (iss[c0].size() > iss[c1].size());
    });
    vector<int> ans(M, -1);
    vector<int> idsA(N, -1), idsB(N, -1);
    for (const int c : cs) {
      vector<int> is;
      for (const int i : iss[c]) if (!~ans[i]) {
        is.push_back(i);
      }
      if (is.size()) {
        vector<int> as, bs;
        for (const int i : is) {
          as.push_back(A[i]);
          bs.push_back(B[i]);
        }
        sort(as.begin(), as.end());
        sort(bs.begin(), bs.end());
        as.erase(unique(as.begin(), as.end()), as.end());
        bs.erase(unique(bs.begin(), bs.end()), bs.end());
        const int asLen = as.size();
        const int bsLen = bs.size();
        for (int x = 0; x < asLen; ++x) idsA[as[x]] = x;
        for (int y = 0; y < bsLen; ++y) idsB[bs[y]] = y;
        bm::init(asLen, bsLen);
        for (const int i : is) {
          bm::ae(idsA[A[i]], idsB[B[i]]);
        }
        bm::run();
        for (const int i : is) {
          if (bm::to[idsA[A[i]]] == idsB[B[i]]) {
            ans[i] = c;
          }
        }
      }
    }
    bool ok = true;
    for (int i = 0; i < M; ++i) {
      ok = ok && (~ans[i]);
    }
    if (ok) {
      return ans;
    }
  }
}

int main() {
  for (; ~scanf("%d%d%d", &N, &M, &K); ) {
    A.resize(M);
    B.resize(M);
    C.assign(M, vector<int>(K));
    for (int i = 0; i < M; ++i) {
      scanf("%d%d", &A[i], &B[i]);
      --A[i];
      --B[i];
      for (int k = 0; k < K; ++k) {
        scanf("%d", &C[i][k]);
      }
    }
    
    vector<int> ans;
    if (K == 2) {
      ans = sub3();
    } else {
      ans = uso();
    }
    
    for (int i = 0; i < M; ++i) {
      if (i) printf(" ");
      printf("%d", ans[i]);
    }
    puts("");
  }
  return 0;
}

详细

Subtask #1:

score: 1
Accepted

Test #1:

score: 1
Accepted
time: 1ms
memory: 3928kb

input:

150 150 1
144 5 1
141 54 1
26 120 1
148 68 1
136 62 1
114 1 1
33 136 1
85 100 1
97 124 1
84 66 1
107 81 1
82 135 1
112 44 1
20 89 1
50 32 1
52 94 1
89 88 1
3 57 1
130 23 1
140 150 1
96 37 1
122 38 1
41 63 1
99 85 1
13 95 1
142 47 1
95 4 1
69 17 1
27 119 1
73 93 1
108 43 1
54 18 1
37 76 1
67 114 1
40...

output:

1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1

result:

ok construction is correct.

Test #2:

score: 0
Accepted
time: 0ms
memory: 3844kb

input:

150 150 1
117 132 96
147 4 114
67 57 60
62 94 20
48 117 68
31 144 27
19 44 121
3 51 92
83 52 67
26 125 56
8 124 75
125 31 52
79 8 21
132 14 136
77 111 45
134 136 145
129 73 85
122 92 143
59 76 36
60 127 115
102 126 133
10 106 32
93 35 106
75 47 102
45 140 41
44 108 146
25 98 106
140 116 76
143 3 87
...

output:

96 114 60 20 68 27 121 92 67 56 75 52 21 136 45 145 85 143 36 115 133 32 106 102 41 146 106 76 87 90 116 15 147 51 35 85 15 83 43 105 89 12 89 140 103 114 135 78 93 80 87 93 19 7 125 132 96 96 99 48 1 63 3 6 146 116 48 9 126 6 106 64 74 84 16 23 119 51 7 83 96 56 94 97 27 15 51 106 95 32 70 103 75 8...

result:

ok construction is correct.

Test #3:

score: 0
Accepted
time: 0ms
memory: 3976kb

input:

150 10 1
35 145 1
145 88 2
130 14 1
111 142 1
138 99 1
76 73 1
101 79 1
147 137 2
65 64 1
108 8 2

output:

1 2 1 1 1 1 1 2 1 2

result:

ok construction is correct.

Subtask #2:

score: 2
Accepted

Test #4:

score: 2
Accepted
time: 313ms
memory: 48332kb

input:

75 5625 150
11 6 680849 150419 731361 419631 223710 806977 837589 529911 568337 456216 515190 302854 672904 388629 548276 803173 770491 610684 550790 786097 253610 446581 705772 610053 637171 567249 365794 571846 431219 213414 466432 53255 748825 765338 761154 556712 159152 463622 706471 49434 59624...

output:

273492 589359 133317 787496 662071 62722 575093 459972 117222 200061 583789 157706 791321 195276 289550 538589 642727 219768 473001 48009 207468 691549 293935 365231 265110 417391 136898 118053 339927 65283 728368 659418 337475 833004 102359 27191 506861 646926 516499 788116 763852 698766 454809 610...

result:

ok construction is correct.

Test #5:

score: 0
Accepted
time: 58ms
memory: 12304kb

input:

75 5625 150
55 59 136 110 80 141 34 72 121 2 116 38 39 16 56 20 147 81 58 64 24 83 73 30 127 97 128 35 77 96 54 21 106 57 32 115 133 84 50 103 94 45 68 53 31 8 55 44 89 41 36 150 3 28 9 98 66 49 119 101 114 112 82 11 22 124 134 107 105 90 88 145 87 135 26 79 37 122 10 15 104 27 18 120 7 13 46 139 40...

output:

44 91 49 132 143 125 49 49 49 143 49 49 49 49 23 16 49 77 143 49 49 23 23 44 77 49 44 49 23 143 49 49 23 49 49 23 49 49 49 23 62 49 87 23 49 49 77 49 62 143 23 146 62 16 49 23 49 49 49 49 23 143 23 23 143 97 44 44 44 44 148 49 44 49 44 77 23 106 62 143 132 23 49 143 44 23 49 49 23 49 49 49 16 49 49 ...

result:

ok construction is correct.

Test #6:

score: 0
Accepted
time: 162ms
memory: 33296kb

input:

75 3750 150
1 29 15545 372923 77579 125076 509966 151564 332286 414939 296369 227609 9580 52174 99587 224186 2679 309545 38096 115252 281893 44718 259941 187595 500086 197842 267668 399469 254416 114691 268905 112134 257669 210411 135373 423915 537194 17707 204354 99757 234452 307155 82087 64190 309...

output:

53110 163048 433697 415006 35088 211280 44715 232302 101919 554227 81138 556210 376051 196815 489706 489706 197447 506579 305151 75004 43677 489718 490246 317380 307511 178241 321339 197779 105341 114871 258375 131644 115201 61390 418981 57467 437567 230244 95189 361182 512943 260359 78184 351786 48...

result:

ok construction is correct.

Test #7:

score: 0
Accepted
time: 35ms
memory: 8716kb

input:

75 3750 150
43 71 86 127 132 6 139 123 83 37 85 103 52 102 4 148 111 34 110 66 42 130 150 149 53 45 137 129 2 5 87 79 146 47 9 98 96 54 17 126 81 115 7 105 117 119 101 144 74 23 44 19 84 97 50 13 22 94 78 63 134 40 142 76 109 95 12 138 112 72 136 24 77 31 32 118 124 135 68 104 16 1 93 106 128 51 20 ...

output:

23 18 146 23 18 107 18 35 102 52 18 18 55 102 52 18 18 123 18 34 18 18 23 18 55 18 18 18 18 18 35 146 55 18 18 146 55 18 52 18 55 42 18 52 18 35 18 55 55 23 23 18 18 146 89 35 102 55 89 18 89 16 55 18 55 108 42 55 123 18 18 18 23 146 23 55 55 23 35 102 23 146 18 89 102 55 108 89 55 18 55 18 55 18 18...

result:

ok construction is correct.

Subtask #3:

score: 0
Wrong Answer

Test #8:

score: 0
Wrong Answer
time: 1ms
memory: 4164kb

input:

150 300 2
81 6 1 2
64 88 1 2
5 76 2 1
22 9 2 1
32 142 1 2
97 32 2 1
18 87 1 2
146 100 2 1
56 139 1 2
61 109 2 1
124 105 2 1
126 145 1 2
16 19 1 2
16 138 2 1
131 111 2 1
145 111 2 1
59 59 2 1
89 43 1 2
2 38 1 2
63 149 2 1
46 48 1 2
140 131 1 2
86 10 2 1
116 40 1 2
123 38 2 1
75 109 2 1
131 142 1 2
9 ...

output:

1 2 2 2 1 2 1 2 1 1 1 1 2 2 2 2 1 1 2 2 1 1 2 1 1 2 1 2 1 1 2 2 2 2 2 2 2 2 1 2 2 2 1 2 2 1 2 1 1 1 2 1 1 2 1 1 2 2 2 2 1 1 1 2 2 1 2 1 2 2 1 1 1 2 2 1 2 2 1 2 1 1 1 2 2 2 1 2 1 2 2 2 2 1 1 1 2 1 1 2 1 2 2 2 1 1 1 1 1 1 1 1 2 2 1 1 1 1 2 2 1 1 1 2 2 2 1 1 2 1 2 2 1 2 2 2 1 1 1 1 2 2 2 1 2 2 2 1 2 1 ...

result:

wrong answer not a proper coloring.

Subtask #4:

score: 37
Accepted

Test #18:

score: 37
Accepted
time: 300ms
memory: 35716kb

input:

149 22201 150
106 24 20 90 56 109 85 33 76 25 97 77 134 75 15 24 88 16 93 126 43 94 116 120 28 130 21 140 70 111 71 32 29 41 132 39 84 62 27 92 55 117 129 125 127 104 74 114 14 145 36 121 22 69 68 133 59 65 58 148 131 40 54 118 110 3 61 105 4 112 142 122 73 37 1 113 45 87 57 89 103 98 100 63 146 106...

output:

80 64 64 137 64 72 118 64 72 124 10 27 64 64 64 72 64 131 64 80 120 78 64 64 64 64 72 72 72 64 64 64 101 120 64 10 64 64 80 64 72 64 120 104 72 64 16 78 120 72 64 72 64 64 22 64 137 72 101 64 10 72 72 72 72 4 64 120 133 78 64 72 120 64 78 64 64 8 64 80 64 72 94 64 72 101 72 72 64 64 64 72 64 64 64 7...

result:

ok construction is correct.

Test #19:

score: 0
Accepted
time: 298ms
memory: 35784kb

input:

149 22201 150
59 87 57 143 9 144 61 104 129 116 26 50 73 24 138 78 82 137 4 100 81 69 101 140 102 115 149 18 42 54 16 28 75 74 130 70 35 12 29 36 2 121 62 37 21 64 71 133 110 96 58 67 59 128 124 56 106 103 53 107 49 141 90 105 8 1 65 13 146 77 83 22 134 84 108 119 44 15 32 88 17 79 48 33 46 120 111 ...

output:

86 140 86 110 137 140 86 86 140 140 140 140 51 133 140 142 86 140 140 142 140 140 140 140 130 86 133 86 86 140 140 86 140 130 86 140 140 140 86 49 142 140 86 142 140 140 86 144 140 140 140 140 61 142 140 143 142 130 142 140 140 140 91 60 35 133 140 140 140 142 91 142 86 140 91 140 140 142 138 140 14...

result:

ok construction is correct.

Test #20:

score: 0
Accepted
time: 301ms
memory: 35976kb

input:

149 22201 150
85 67 67 47 152 75 90 126 113 128 46 30 36 85 21 97 79 16 61 39 120 99 153 105 76 107 56 116 118 119 122 94 9 127 12 15 68 104 80 7 100 146 125 95 53 112 74 143 81 27 1 52 40 71 29 88 139 69 13 11 92 132 45 42 38 151 3 60 24 91 2 25 86 133 41 10 33 135 82 57 110 6 114 140 138 62 87 64 ...

output:

51 138 137 115 137 137 137 111 137 137 137 111 129 127 141 111 137 143 51 148 137 137 143 81 137 132 60 137 137 111 138 137 137 58 148 137 137 79 137 24 137 143 111 111 137 137 143 137 79 79 148 137 137 111 137 109 19 137 137 137 111 137 72 137 111 93 137 111 111 51 137 143 111 138 81 137 138 51 111...

result:

ok construction is correct.

Test #21:

score: 0
Accepted
time: 290ms
memory: 37104kb

input:

149 22201 150
20 14 155 45 96 11 71 74 38 143 146 165 31 128 56 133 137 127 4 75 108 44 69 77 141 55 113 22 163 54 67 29 23 37 63 148 25 117 97 65 89 76 51 112 139 151 109 66 82 114 13 80 73 119 61 84 53 40 156 24 20 164 50 122 124 158 8 118 7 120 160 154 152 145 46 138 30 162 132 16 59 15 91 94 52 ...

output:

23 124 23 23 124 137 124 2 23 23 23 23 2 124 23 23 124 2 23 23 23 124 119 53 124 23 123 23 124 100 12 23 124 23 124 124 23 124 23 111 23 23 124 23 124 23 25 59 23 124 100 124 23 23 23 23 23 124 12 23 77 23 124 81 12 23 2 2 23 2 23 53 137 59 53 23 137 124 134 23 23 23 23 23 23 23 23 124 12 23 124 23 ...

result:

ok construction is correct.

Test #22:

score: 0
Accepted
time: 767ms
memory: 83204kb

input:

149 22201 150
64 32 323179 933179 87351 997262 611605 404909 732640 452641 642757 539724 945803 438567 594564 413639 542011 13240 428009 469975 976134 998911 916345 580907 215711 24916 933666 193524 159822 766638 161868 151754 502972 194801 55497 466348 151018 849178 317067 34382 293653 929582 83436...

output:

323179 839038 548746 594030 981148 14605 228715 935714 891291 192278 635076 375657 645679 379164 904065 89577 68781 395489 667526 60599 192099 749454 217164 994702 609649 706673 817167 507966 800075 850425 402960 100890 757038 532308 742198 173368 686368 209316 940630 278983 901799 760318 665357 289...

result:

ok construction is correct.

Subtask #5:

score: 21
Accepted

Test #23:

score: 21
Accepted
time: 310ms
memory: 36240kb

input:

150 22500 150
117 116 91 74 113 95 110 26 141 115 38 66 71 138 17 83 112 99 149 18 3 44 15 28 53 114 96 37 7 145 20 109 80 19 117 16 63 27 42 137 135 132 14 39 1 148 147 30 68 126 12 32 57 67 119 139 124 46 133 24 36 51 69 88 131 60 86 140 102 29 100 150 35 123 84 85 90 105 75 45 77 143 130 127 98 7...

output:

137 137 107 107 137 47 47 137 15 47 137 51 107 107 107 137 59 137 47 51 137 137 137 137 33 47 47 137 107 47 71 85 137 47 47 137 107 137 66 137 107 137 137 137 137 137 137 71 137 47 47 137 137 47 137 107 137 105 137 137 33 137 47 55 137 137 105 137 137 55 105 51 24 105 47 63 47 137 77 137 137 33 137 ...

result:

ok construction is correct.

Test #24:

score: 0
Accepted
time: 309ms
memory: 35824kb

input:

150 22500 150
147 68 107 8 61 49 133 15 148 55 122 84 72 75 29 19 118 99 51 79 142 117 11 50 149 69 87 45 73 92 41 110 56 144 128 47 77 78 141 48 31 53 136 103 94 26 145 151 121 46 101 58 38 10 102 126 22 140 138 40 129 96 82 150 95 30 27 100 28 13 114 74 81 52 116 17 4 143 66 90 20 2 111 21 7 91 68...

output:

9 18 122 33 51 136 18 139 112 18 18 58 148 18 130 18 18 136 136 136 18 18 18 136 100 94 144 18 18 18 58 112 122 18 18 136 136 18 18 112 136 18 18 136 18 122 136 18 122 14 18 122 136 18 18 18 62 18 33 136 18 18 18 14 136 136 143 136 136 112 98 18 136 18 69 18 112 18 18 18 44 3 18 18 148 18 65 136 44 ...

result:

ok construction is correct.

Test #25:

score: 0
Accepted
time: 292ms
memory: 35988kb

input:

150 22500 150
53 59 70 142 54 108 56 6 22 92 39 80 38 84 125 144 117 127 74 71 40 140 33 146 145 72 85 44 128 45 86 94 93 66 34 52 21 59 57 137 78 120 63 67 13 124 2 126 60 76 79 102 116 100 23 150 58 115 107 82 104 138 97 151 106 131 152 42 132 77 32 11 89 55 30 31 95 49 65 96 141 135 17 114 143 14...

output:

64 5 64 7 64 64 64 42 7 64 42 64 31 5 42 64 64 42 42 64 42 64 64 42 64 64 64 64 64 72 72 42 101 42 2 95 42 95 123 33 42 64 42 64 144 64 64 31 64 42 64 101 42 42 42 129 72 64 64 64 64 60 95 64 136 64 60 64 60 72 103 44 64 95 64 60 64 5 60 60 64 42 40 60 42 5 64 64 64 64 64 101 42 42 60 42 101 72 60 6...

result:

ok construction is correct.

Test #26:

score: 0
Accepted
time: 305ms
memory: 36344kb

input:

150 22500 150
81 87 83 67 109 57 147 69 102 72 25 29 39 94 56 73 27 41 81 53 144 101 135 117 127 96 5 145 155 22 87 106 38 19 14 86 58 97 20 35 65 124 47 93 50 10 75 80 52 31 76 154 126 78 91 113 42 118 9 115 15 51 149 141 119 134 92 74 64 129 66 103 110 49 85 143 133 148 12 61 142 151 131 153 21 34...

output:

86 31 63 31 68 31 31 63 63 63 4 31 31 63 31 31 4 122 4 86 31 86 31 6 31 4 31 63 31 89 31 31 31 31 122 4 63 28 31 4 31 122 31 31 31 31 122 31 6 31 86 31 4 4 31 86 86 63 4 31 31 127 86 122 31 63 112 90 111 63 31 31 63 122 63 4 63 4 2 31 31 144 31 129 40 31 63 63 72 37 122 31 4 90 86 31 31 31 122 63 86...

result:

ok construction is correct.

Test #27:

score: 0
Accepted
time: 284ms
memory: 36940kb

input:

150 22500 150
21 135 30 53 162 62 34 163 112 104 16 67 48 161 137 99 94 93 158 20 70 91 12 148 40 24 141 131 29 132 14 44 31 7 167 146 35 113 45 39 136 84 142 108 87 123 129 85 58 134 5 166 28 73 128 56 80 147 155 6 149 76 41 36 88 66 121 86 168 97 63 47 26 116 169 151 95 15 100 19 50 103 98 126 38 ...

output:

49 49 49 121 44 49 49 118 49 49 150 108 49 49 49 153 49 44 44 44 49 49 121 44 108 6 106 49 118 121 49 49 49 49 50 144 49 49 49 44 49 106 49 121 121 49 154 121 49 121 49 153 154 33 49 121 121 17 112 121 121 121 121 44 49 128 33 144 49 49 121 44 121 49 49 55 49 49 44 49 112 49 121 154 121 44 112 121 1...

result:

ok construction is correct.

Test #28:

score: 0
Accepted
time: 791ms
memory: 83804kb

input:

150 22500 150
142 84 95127 811376 352518 34572 172491 645409 426070 585385 839136 465937 516075 461423 149284 929627 554965 743036 475305 268781 574670 840165 214086 131675 655651 402556 295405 797734 729790 132978 283490 807542 165311 188276 808619 466578 568749 15488 450230 528624 262879 824125 58...

output:

16587 304299 488271 136923 885508 356541 870536 434229 133921 922116 578723 853773 809838 314335 144339 745900 587746 757083 614479 238058 859533 288092 863766 415266 327851 69803 39171 516641 953787 631740 628674 911725 500762 359044 996971 385603 894581 525359 752704 980956 285553 652157 860649 77...

result:

ok construction is correct.

Subtask #6:

score: 0
Time Limit Exceeded

Test #29:

score: 28
Accepted
time: 0ms
memory: 3948kb

input:

150 450 3
57 22 2 1 3
142 57 1 3 2
138 113 3 1 2
13 77 2 3 1
43 112 1 2 3
82 99 2 1 3
66 65 3 1 2
3 31 2 1 3
24 146 3 2 1
127 18 2 3 1
125 37 1 2 3
13 137 1 2 3
105 127 1 3 2
54 20 1 2 3
48 15 3 1 2
23 71 2 3 1
30 28 1 2 3
125 146 1 3 2
68 120 2 1 3
38 92 2 1 3
101 100 1 3 2
81 28 1 3 2
70 7 1 2 3
1...

output:

3 2 2 3 2 3 3 3 3 1 3 2 1 1 2 2 1 2 3 3 2 3 3 2 2 3 3 1 1 2 3 1 2 1 2 3 1 1 1 3 3 1 2 3 1 1 3 3 1 3 3 2 3 3 3 3 3 1 2 3 2 1 1 1 2 3 3 2 3 2 3 3 3 3 1 1 1 2 1 2 1 3 3 2 2 2 2 3 3 2 3 3 3 3 3 1 1 2 1 2 2 1 3 1 3 3 2 2 1 3 1 1 1 3 3 3 1 1 3 3 3 3 1 3 3 3 2 2 3 3 3 2 1 2 3 2 3 1 2 2 3 2 1 2 1 1 2 3 2 2 ...

result:

ok construction is correct.

Test #30:

score: 0
Accepted
time: 1ms
memory: 3956kb

input:

150 450 3
148 73 905 1007 1204
72 13 614 952 114
72 3 1026 931 764
33 21 1143 204 536
19 112 694 1261 734
104 68 1057 72 1249
83 66 311 147 656
141 5 1349 1317 700
12 113 331 375 1165
49 7 1114 1149 1224
79 41 531 46 712
128 20 630 1175 399
35 74 421 1148 608
57 124 840 108 1238
63 22 922 403 203
35...

output:

1204 114 764 536 1261 72 311 700 375 1149 46 630 421 840 403 1032 910 379 170 708 890 211 42 654 939 976 1321 835 1233 94 212 1288 650 1137 130 708 1052 797 249 564 1067 313 648 567 604 1184 381 460 1068 1077 894 1321 535 1150 655 1196 233 405 38 1145 218 25 41 1067 1342 1068 1127 917 366 729 1195 1...

result:

ok construction is correct.

Test #31:

score: -28
Time Limit Exceeded

input:

150 450 3
111 66 3 4 1
62 51 3 2 4
117 58 3 4 1
54 105 1 3 4
40 108 3 1 4
104 112 2 4 1
131 73 4 3 1
109 30 1 4 3
36 130 3 4 2
40 70 2 3 1
24 112 3 1 4
44 119 4 1 2
39 91 1 4 3
28 118 1 2 3
8 117 2 4 1
110 109 3 1 4
99 20 4 1 2
131 49 4 1 2
130 114 1 4 3
133 57 3 1 2
41 125 1 3 4
21 65 1 2 3
144 143...

output:


result: