QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#533757 | #8760. 不等式 | qwetl | WA | 4ms | 26264kb | C++17 | 2.1kb | 2024-08-26 12:50:44 | 2024-08-26 12:50:45 |
Judging History
answer
#include <bits/stdc++.h>
#define Ciallo main
using namespace std;
const int N = 4e6;
inline int read(){
int _x = 0, _w = 1;
char ch = 0;
while(ch < '0' || ch > '9') {
if(ch == '-') _w = -1;
#ifdef __linux__
ch = (char)getchar_unlocked();
#else
ch = (char) _getchar_nolock();
#endif
}
while(ch >= '0' && ch <= '9') {
_x = (_x << 3) + (_x << 1) + (ch - '0');
#ifdef __linux__
ch = (char)getchar_unlocked();
#else
ch = (char) _getchar_nolock();
#endif
}
return _x * _w;
}
inline void write(int _x){
if(_x < 0) {
#ifdef __linux__
putchar_unlocked('-');
#else
_putchar_nolock('-');
#endif
_x = -_x;
}
static int _sta[130];
int _top = 0;
do {
_sta[_top++] = _x % 10, _x /= 10;
} while(_x);
while(_top)
#ifdef __linux__
putchar_unlocked(_sta[--_top] + 48);
putchar_unlocked('\n');
#else
_putchar_nolock(_sta[--_top] + 48);
_putchar_nolock('\n');
#endif
}
int n, m, sum, x, y, z;
int e[N], h[N], ne[N], idx, p[N];
int w[N], cnt;
int q[N], d[N], hh, tt;
inline void add(int _a, int _b, int _c){
e[idx] = _b, p[idx] = _c, ne[idx] = h[_a], h[_a] = idx++;
}
void topoSort(){
for(int i = 1; i <= n + cnt; i++)
if(!d[i]) {
q[tt++] = i;
w[i] = 1;
}
while(hh < tt) {
int t = q[hh++];
for(int i = h[t]; i != -1; i = ne[i]) {
int j = e[i];
w[j] = max(w[j], w[t] + w[p[i]]);
d[j]--;
if(!d[j])
q[tt++] = j;
}
}
}
signed Ciallo(){
memset(h, -1, sizeof h);
n = read(), m = read();
while(m--) {
x = read(), y = read(), z = read();
if(x == y || x == z){
puts("-1");
return 0;
}
add(y, x, z), add(z, x, y);
d[x] += 2;
}
topoSort();
for(int i = 1; i <= n; i++)
// write(w[i]);
sum += w[i];
write(sum);
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 4ms
memory: 24200kb
input:
3 1 1 2 2
output:
4
result:
ok 1 number(s): "4"
Test #2:
score: 0
Accepted
time: 0ms
memory: 26172kb
input:
3 1 1 2 3
output:
4
result:
ok 1 number(s): "4"
Test #3:
score: 0
Accepted
time: 0ms
memory: 26156kb
input:
3 1 1 2 2
output:
4
result:
ok 1 number(s): "4"
Test #4:
score: 0
Accepted
time: 3ms
memory: 24064kb
input:
3 1 1 2 2
output:
4
result:
ok 1 number(s): "4"
Test #5:
score: 0
Accepted
time: 0ms
memory: 26176kb
input:
3 1 1 2 2
output:
4
result:
ok 1 number(s): "4"
Test #6:
score: 0
Accepted
time: 0ms
memory: 26176kb
input:
5 1 1 2 2
output:
6
result:
ok 1 number(s): "6"
Test #7:
score: 0
Accepted
time: 3ms
memory: 24088kb
input:
5 1 1 2 2
output:
6
result:
ok 1 number(s): "6"
Test #8:
score: 0
Accepted
time: 0ms
memory: 24064kb
input:
5 1 1 2 2
output:
6
result:
ok 1 number(s): "6"
Test #9:
score: 0
Accepted
time: 0ms
memory: 26152kb
input:
5 1 1 2 3
output:
6
result:
ok 1 number(s): "6"
Test #10:
score: 0
Accepted
time: 3ms
memory: 26244kb
input:
5 2 1 2 3 2 3 4
output:
8
result:
ok 1 number(s): "8"
Test #11:
score: 0
Accepted
time: 3ms
memory: 26108kb
input:
10 1 1 2 3
output:
11
result:
ok 1 number(s): "11"
Test #12:
score: 0
Accepted
time: 3ms
memory: 26176kb
input:
10 1 1 2 2
output:
11
result:
ok 1 number(s): "11"
Test #13:
score: 0
Accepted
time: 0ms
memory: 26244kb
input:
10 2 1 2 3 2 3 4
output:
13
result:
ok 1 number(s): "13"
Test #14:
score: 0
Accepted
time: 0ms
memory: 26112kb
input:
10 2 1 2 2 2 3 4
output:
14
result:
ok 1 number(s): "14"
Test #15:
score: 0
Accepted
time: 0ms
memory: 26232kb
input:
10 3 1 2 3 1 8 8 2 3 3
output:
13
result:
ok 1 number(s): "13"
Test #16:
score: 0
Accepted
time: 0ms
memory: 24132kb
input:
20 1 1 2 2
output:
21
result:
ok 1 number(s): "21"
Test #17:
score: 0
Accepted
time: 2ms
memory: 26188kb
input:
20 2 1 2 3 2 3 3
output:
23
result:
ok 1 number(s): "23"
Test #18:
score: 0
Accepted
time: 0ms
memory: 26264kb
input:
20 3 7 14 6 1 2 3 4 7 20
output:
24
result:
ok 1 number(s): "24"
Test #19:
score: 0
Accepted
time: 2ms
memory: 22088kb
input:
20 4 1 2 2 6 10 6 2 3 3 3 4 5
output:
-1
result:
ok 1 number(s): "-1"
Test #20:
score: 0
Accepted
time: 2ms
memory: 26096kb
input:
20 5 1 17 3 1 2 3 2 3 4 3 4 5 8 13 16
output:
28
result:
ok 1 number(s): "28"
Test #21:
score: 0
Accepted
time: 2ms
memory: 24064kb
input:
200 9 1 2 2 2 3 3 3 4 5 91 112 195 126 145 82 4 5 5 53 2 15 5 6 6 6 7 7
output:
318
result:
ok 1 number(s): "318"
Test #22:
score: 0
Accepted
time: 0ms
memory: 24128kb
input:
200 17 1 2 2 100 69 47 159 84 111 2 3 3 3 4 5 4 5 5 8 9 76 5 6 7 158 81 154 189 62 45 192 159 181 6 7 7 15 181 91 7 193 152 140 65 66 7 8 9 32 157 67
output:
428
result:
ok 1 number(s): "428"
Test #23:
score: 0
Accepted
time: 0ms
memory: 26176kb
input:
200 25 118 152 40 172 193 173 126 32 89 1 2 3 147 148 112 2 3 4 3 4 4 35 116 95 179 193 64 70 22 55 4 5 5 5 6 6 24 74 182 184 168 129 6 7 8 7 8 9 109 63 173 8 9 10 38 125 106 68 147 40 33 65 46 144 12 168 9 10 11 10 11 11 190 73 48
output:
835
result:
ok 1 number(s): "835"
Test #24:
score: 0
Accepted
time: 0ms
memory: 26168kb
input:
200 33 1 2 3 165 80 199 2 3 4 10 80 12 3 4 5 4 5 6 5 6 7 128 1 190 6 7 7 166 124 95 7 8 9 60 51 80 25 158 81 108 107 99 8 9 9 9 10 10 10 11 12 54 41 100 11 12 13 176 185 149 12 13 13 13 14 14 14 15 16 15 16 17 16 17 17 128 73 196 17 18 19 93 169 141 18 19 19 19 20 20 20 21 21 21 22 22 12 55 32
output:
543121
result:
ok 1 number(s): "543121"
Test #25:
score: -100
Wrong Answer
time: 0ms
memory: 26184kb
input:
200 41 1 2 3 2 3 3 3 4 4 4 5 5 175 3 161 5 6 7 6 7 8 7 8 9 8 9 10 9 10 10 10 11 11 24 15 157 82 57 72 161 48 197 149 96 16 30 3 131 165 114 21 143 110 56 11 12 12 12 13 13 13 14 14 62 183 153 14 15 15 15 16 16 192 139 91 178 54 86 16 17 18 158 59 18 17 18 19 35 91 197 18 19 20 99 129 43 168 76 146 7...
output:
189
result:
wrong answer 1st numbers differ - expected: '-1', found: '189'