QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#367240#7977. 彩虹航线unputdownable3 33ms13148kbC++172.8kb2024-03-25 20:44:162024-03-25 20:44:16

Judging History

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

  • [2024-03-25 20:44:16]
  • 评测
  • 测评结果:3
  • 用时:33ms
  • 内存:13148kb
  • [2024-03-25 20:44:16]
  • 提交

answer

// #pragma GCC optimize("Ofast")
// #pragma GCC optimize("unroll-loops")
// #pragma GCC target("sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx,avx2")
#include <bits/stdc++.h>
// #define int long long
#define i64 long long
#define pii pair <int, int> 
using namespace std;
inline int read(void) {
    int x=0,sgn=1; char ch=getchar();
    while(ch<48||57<ch) {if(ch==45)sgn=0;ch=getchar();}
    while(47<ch&&ch<58) {x=x*10+ch-48;   ch=getchar();}
    return sgn? x:-x;
}
void write(int x) {
    if(x<0) putchar('-'),x=-x;
    if(x>9) write(x/10);
    putchar(x%10+'0');
}
/*
    write((Ans%p+p)%p); pls
*/
mt19937 rnd(1147189248);
int n,m,k,N;
int cnt[1000006],deg[302];
struct edge {
    int u,v;
    int col[154];
    inline void init() {
        ++deg[u];
        ++deg[v];
        for(int i=1; i<=k; ++i) ++cnt[col[i]];
    }
    inline int val1() { return deg[u]+deg[v]; }
} E[22504];
int res[22504];
int stk[100005],top;
map <int,int> cols[302];
inline void clear() { for(int i=1; i<=N; ++i) cols[i].clear(); }
inline void delE(int x,int col) {
    cols[E[x].u].erase(col);
    cols[E[x].v].erase(col);
    stk[++top]=x;
    res[x]=0;
}
inline void attempt1() {
    for(int i=1; i<=m; ++i) sort(E[i].col+1,E[i].col+k+1,[&](int x,int y) { return cnt[x]<cnt[y]; });
    for(int i=1; i<=m; ++i) stk[i]=i; top=m;
    shuffle(stk+1,stk+m+1,rnd);
    while(top) {
        int x=stk[top]; --top;
        int u=E[x].u;
        int v=E[x].v;
        int c=-1,d=-1,e=-1;
        for(int j=1; j<=k; ++j) {
            int tmp=E[x].col[j];
            if(cols[u].count(tmp)&&cols[v].count(tmp)) continue;
            if(cols[u].count(tmp)) {
                if(d==-1||rnd()&16==15) {
                    d=cols[u][tmp];
                    e=tmp;
                }
            } else if(cols[v].count(tmp)) {
                if(d==-1||rnd()&16==15) {
                    d=cols[u][tmp];
                    e=tmp;
                }
            } else {
                c=tmp;
                break;
            }
        }
        if(c>-1) {
            cols[u][c]=x;
            cols[v][c]=x;
            res[x]=c;
        } else {
            assert(d!=-1);
            delE(d,e);
            cols[u][e]=x;
            cols[v][e]=x;
            res[x]=e;
        }
    }
    for(int i=1; i<=m; ++i) write(res[i]),putchar(" \n"[i==m]);
    exit(0);
}
signed main() {
    // freopen("localinput","r",stdin);
    // freopen("localoutput","w",stdout);
    n=read(); m=read(); k=read(); N=n<<1;
    for(int i=1; i<=m; ++i) {
        E[i].u=read();
        E[i].v=read()+n;
        for(int u=1; u<=k; ++u) E[i].col[u]=read();
        E[i].init();
    }
    attempt1();
    // fprintf(stderr,"%.4lf\n",1.0*clock()/CLOCKS_PER_SEC);
    return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Subtask #1:

score: 1
Accepted

Test #1:

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

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: 1ms
memory: 7780kb

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: 1ms
memory: 5616kb

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: 33ms
memory: 13148kb

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:

385267 398795 662181 49603 743426 153192 64916 54871 535472 660899 183569 736519 647253 293004 370201 819882 534424 75157 108101 719297 77581 712598 712653 692113 35826 390133 412381 141307 684474 88556 137721 384790 293681 259705 743293 76755 308150 776558 298616 57259 348481 350516 396451 311574 7...

result:

ok construction is correct.

Test #5:

score: 0
Accepted
time: 18ms
memory: 10896kb

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:

137 146 74 78 76 66 90 92 82 85 39 7 132 73 129 94 54 96 89 143 87 86 72 4 35 6 147 21 45 128 42 8 13 119 89 107 11 30 39 122 65 69 14 128 79 144 54 96 72 113 7 12 112 123 5 81 96 64 81 93 37 28 129 3 29 35 127 132 110 83 65 124 10 126 96 66 131 77 33 44 130 13 31 84 124 104 29 25 108 70 16 86 4 48 ...

result:

ok construction is correct.

Test #6:

score: 0
Accepted
time: 22ms
memory: 12276kb

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:

65634 433835 210832 162172 414826 369274 462224 488801 101156 473411 129681 173040 407597 555100 508647 491772 88036 462849 541952 511200 417614 175866 420327 448212 49047 174111 121967 549618 84415 386314 542399 469888 170214 76873 438176 10826 53644 161126 216349 310157 375075 200841 96721 469750 ...

result:

ok construction is correct.

Test #7:

score: 0
Accepted
time: 8ms
memory: 10296kb

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:

73 2 41 143 26 139 104 129 111 46 150 109 65 80 59 126 43 45 120 37 86 45 42 43 108 5 75 113 65 23 69 140 83 78 65 100 130 84 4 103 107 130 33 105 102 12 52 127 24 67 40 134 102 49 66 3 26 92 21 105 78 107 93 141 65 22 112 130 55 71 8 102 30 33 119 94 90 52 6 33 88 54 64 146 104 52 64 6 89 95 46 137...

result:

ok construction is correct.

Subtask #3:

score: 0
Runtime Error

Test #8:

score: 0
Runtime Error

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:


result:


Subtask #4:

score: 0
Runtime Error

Test #18:

score: 0
Runtime Error

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:


result:


Subtask #5:

score: 0
Runtime Error

Test #23:

score: 0
Runtime Error

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:


result:


Subtask #6:

score: 0
Time Limit Exceeded

Test #29:

score: 0
Time Limit Exceeded

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:


result: