QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#305950 | #6412. Classical Geometry Problem | ckiseki | AC ✓ | 25ms | 4076kb | C++20 | 4.1kb | 2024-01-16 06:26:29 | 2024-01-16 06:26:30 |
Judging History
answer
#include <bits/stdc++.h>
#ifdef CKISEKI
#define safe cerr<<__PRETTY_FUNCTION__<<" line "<<__LINE__<<" safe\n"
#define debug(a...) qwe(#a, a)
#define orange(a...) dvo(#a, a)
using std::cerr;
template <typename ...T>
void qwe(const char *s, T...a) {
cerr << "\e[1;32m(" << s << ") = (";
int cnt = sizeof...(T);
(..., (cerr << a << (--cnt ? ", " : ")\e[0m\n")));
}
template <typename Iter>
void dvo(const char *s, Iter L, Iter R) {
cerr << "\e[1;32m[ " << s << " ] = [ ";
for (int f = 0; L != R; ++L)
cerr << (f++ ? ", " : "") << *L;
cerr << " ]\e[0m\n";
}
#else
#define safe ((void)0)
#define debug(...) safe
#define orange(...) safe
#endif
using namespace std;
const int C = 255;
using LLF = long double;
LLF SQRT(LLF x) {
return sqrt(max<LLF>(0, x));
}
LLF dist_2d(pair<LLF, LLF> p, pair<LLF, LLF> q) {
return SQRT((p.first - q.first) * (p.first - q.first) + (p.second - q.second) * (p.second - q.second));
}
LLF dist(tuple<LLF, LLF, LLF> &&p, tuple<LLF, LLF, LLF> &&q) {
auto [px, py, pz] = p;
auto [qx, qy, qz] = q;
return SQRT((px - qx) * (px - qx) + (py - qy) * (py - qy) + (pz - qz) * (pz - qz));
}
const LLF eps = 1e-9;
auto solve2(LLF x, LLF y) {
vector<tuple<int,int,LLF>> ans;
if (abs(x - C) <= eps && abs(y - C) <= eps) {
LLF d = dist_2d(
{0, 0},
{C, C}
);
ans.emplace_back(C, C, d);
} else if (x <= y) {
LLF Y = C - (C - y) / (C - x) * C;
LLF d = dist_2d(
{0, Y},
{x, y}
);
ans.emplace_back(0, C, Y);
ans.emplace_back(C, C, d);
} else {
LLF X = C - (C - x) / (C - y) * C;
LLF d = dist_2d(
{X, 0},
{x, y}
);
ans.emplace_back(C, 0, X);
ans.emplace_back(C, C, d);
}
return ans;
}
tuple<LLF,LLF,LLF> check(auto f) {
LLF rx = 0, ry = 0, rz = 0;
for (auto [x, y, z, a]: f) {
LLF vx = x - rx;
LLF vy = y - ry;
LLF vz = z - rz;
LLF v = SQRT(vx*vx+vy*vy+vz*vz);
rx += vx / v * min(v, a);
ry += vy / v * min(v, a);
rz += vz / v * min(v, a);
}
return { rx, ry, rz };
}
void solve() {
int x, y, z;
cin >> x >> y >> z;
vector<tuple<int,int,int,LLF>> ans;
if (x == C && y == C && z == C) {
ans.emplace_back(C, C, C, dist({0, 0, 0}, {C, C, C}));
} else if (x <= y && x <= z) {
LLF Y = C - (C - y) / LLF(C - x) * C;
LLF Z = C - (C - z) / LLF(C - x) * C;
for (auto [xx, yy, amount]: solve2(Y, Z)) {
ans.emplace_back(0, xx, yy, amount);
}
LLF d = dist(
{0, Y, Z},
{x, y, z}
);
ans.emplace_back(C, C, C, d);
} else if (y <= x && y <= z) {
LLF X = C - (C - x) / LLF(C - y) * C;
LLF Z = C - (C - z) / LLF(C - y) * C;
for (auto [xx, yy, amount]: solve2(X, Z)) {
ans.emplace_back(xx, 0, yy, amount);
}
LLF d = dist(
{X, 0, Z},
{x, y, z}
);
ans.emplace_back(C, C, C, d);
} else if (z <= x && z <= y) {
LLF X = C - (C - x) / LLF(C - z) * C;
LLF Y = C - (C - y) / LLF(C - z) * C;
for (auto [xx, yy, amount]: solve2(X, Y)) {
ans.emplace_back(xx, yy, 0, amount);
}
LLF d = dist(
{X, Y, 0},
{x, y, z}
);
ans.emplace_back(C, C, C, d);
}
cout << ans.size() << '\n';
cout << fixed << setprecision(20);
for (auto [X, Y, Z, a]: ans)
cout << X << ' ' << Y << ' ' << Z << ' ' << a << '\n';
auto [fx, fy, fz] = check(ans);
debug(fixed, setprecision(20));
debug(abs(fx - x));
debug(abs(fy - y));
debug(abs(fz - z));
}
int main() {
cin.tie(nullptr)->sync_with_stdio(false);
int T;
cin >> T;
while (T--) {
solve();
}
return 0;
}
详细
Test #1:
score: 100
Accepted
time: 0ms
memory: 3756kb
input:
3 105 255 175 174 174 174 0 0 0
output:
3 0 255 0 255.00000000000000000000 0 255 255 118.99999999999999999306 255 255 255 119.00000000000000000694 3 0 0 255 0.00000000000000000000 0 255 255 0.00000000000000000000 255 255 255 301.37684051698464907099 3 0 0 255 0.00000000000000000000 0 255 255 0.00000000000000000000 255 255 255 0.0000000000...
result:
ok ok (3 test cases)
Test #2:
score: 0
Accepted
time: 24ms
memory: 3828kb
input:
10000 250 128 13 1 245 2 88 183 138 179 69 194 153 246 33 255 119 192 233 30 108 26 208 33 53 162 189 225 130 10 202 137 121 152 198 25 49 165 180 228 56 30 74 18 14 6 115 31 168 242 206 90 238 139 44 103 60 16 21 190 229 209 68 41 171 181 39 74 73 181 96 18 234 95 70 75 174 84 101 16 44 202 249 80 ...
output:
3 255 0 0 244.96062992125984253411 255 255 0 121.27156248170724165553 255 255 255 14.68387252353452099903 3 0 255 0 244.92094861660079051224 0 255 255 1.00472091732902428941 255 255 255 1.41198140475821237564 3 0 255 0 98.07692307692307692041 0 255 255 89.64546449172744695122 255 255 255 113.9495828...
result:
ok ok (10000 test cases)
Test #3:
score: 0
Accepted
time: 22ms
memory: 3768kb
input:
10000 90 173 87 39 251 59 39 43 150 106 29 130 52 55 180 236 225 70 171 15 48 92 133 240 182 226 10 126 139 105 196 7 204 32 131 193 27 96 218 67 29 33 159 9 251 130 111 243 226 69 39 198 131 80 108 169 147 45 36 170 76 138 251 55 235 186 224 165 48 51 133 173 225 14 226 234 70 139 178 92 174 138 24...
output:
3 0 255 0 128.27272727272727272096 255 255 0 5.08489163857499760655 255 255 255 129.12516298861633845529 3 0 255 0 249.79591836734693877098 0 255 255 23.61602753201002100579 255 255 255 52.66778011012420733852 3 0 0 255 128.70283018867924526574 0 255 255 5.26968108966889841639 255 255 255 57.8412195...
result:
ok ok (10000 test cases)
Test #4:
score: 0
Accepted
time: 24ms
memory: 3868kb
input:
10000 186 217 161 76 0 116 246 159 161 32 245 65 206 120 71 217 76 204 109 255 245 157 59 192 55 35 87 27 147 199 190 134 31 169 64 105 5 27 255 161 2 35 244 255 232 253 106 199 28 151 129 50 24 20 172 236 234 74 51 150 179 68 178 69 42 192 152 1 23 177 169 71 216 190 125 136 223 193 255 168 49 74 2...
output:
3 0 255 0 114.56521739130434783815 255 255 0 77.42373845657623413624 255 255 255 210.05662244036672103853 3 0 0 255 56.98324022346368715464 255 0 255 96.22358304761569447461 255 255 255 0.00000000000000000981 3 255 0 0 230.58510638297872340219 255 0 255 5.33679441042434077455 255 255 255 223.0286841...
result:
ok ok (10000 test cases)
Test #5:
score: 0
Accepted
time: 24ms
memory: 3764kb
input:
10000 26 6 234 114 6 172 198 19 173 214 204 1 104 186 218 199 182 82 47 240 186 223 240 143 184 99 164 184 155 37 185 4 114 49 253 17 239 214 37 0 231 38 73 245 212 121 102 155 86 234 219 157 173 216 236 46 65 103 67 130 27 253 105 83 105 197 81 93 254 47 206 225 207 110 24 38 119 248 76 243 180 10 ...
output:
3 0 0 255 231.61572052401746725503 255 0 255 20.56786829069066916721 255 255 255 8.16732405225120578450 3 0 0 255 104.89361702127659572992 255 0 255 128.34225384660640029155 255 255 255 7.17938857175102950305 3 255 0 0 77.74390243902439018991 255 0 255 202.65062870412029905065 255 255 255 20.6310722...
result:
ok ok (10000 test cases)
Test #6:
score: 0
Accepted
time: 24ms
memory: 3820kb
input:
10000 122 50 52 152 12 229 149 135 184 140 164 193 2 251 109 180 33 217 241 225 126 33 165 94 57 163 242 85 164 132 179 131 197 185 186 185 216 145 74 95 203 40 158 236 193 245 97 111 144 61 52 9 67 157 44 113 152 132 82 110 130 182 33 96 168 202 10 184 228 173 243 124 198 29 180 196 15 47 153 63 54...
output:
3 255 0 0 87.93103448275862068367 255 0 255 2.97420261393219688786 255 255 255 77.48385489368097335527 3 0 0 255 190.63106796116504855487 255 0 255 151.52193210226399101848 255 255 255 13.09657188321476564870 3 0 0 255 84.19811320754716980203 255 0 255 35.80702888036413227002 255 255 255 197.0420719...
result:
ok ok (10000 test cases)
Test #7:
score: 0
Accepted
time: 24ms
memory: 4052kb
input:
10000 218 94 126 189 17 30 100 251 196 67 123 128 157 60 0 161 139 95 179 210 67 98 91 45 186 227 63 242 172 226 173 1 24 66 118 98 194 75 112 189 176 43 243 226 174 112 93 67 202 143 142 117 216 97 108 179 239 161 97 91 233 111 216 110 231 208 195 20 203 43 24 22 189 205 79 98 167 102 230 139 185 1...
output:
3 255 0 0 181.86046511627906975550 255 0 255 52.72680171427251264241 255 255 255 122.37353965080200079302 3 255 0 0 180.19999999999999999722 255 0 255 14.51544567918278293497 255 255 255 23.86451981755444790370 3 0 255 0 237.71186440677966102142 0 255 255 158.29803352191897841683 255 255 255 107.030...
result:
ok ok (10000 test cases)
Test #8:
score: 0
Accepted
time: 25ms
memory: 3828kb
input:
10000 58 139 199 227 23 87 52 111 207 249 83 64 55 125 147 142 246 229 118 194 7 164 16 252 59 36 140 143 180 64 167 127 108 202 51 10 172 6 150 28 149 45 72 217 154 236 88 23 4 226 232 225 109 37 172 245 69 190 112 71 81 40 143 124 38 213 124 112 178 169 61 176 180 125 234 1 63 157 51 215 59 75 216...
output:
3 0 0 255 131.89655172413793102204 0 255 255 116.42610096107155373546 255 255 255 69.29797904531933972622 3 255 0 0 212.50000000000000001388 255 0 255 71.31514690694464463083 255 255 255 28.53244080619630960137 3 0 0 255 169.99999999999999998612 0 255 255 78.12227815637646478886 255 255 255 64.92926...
result:
ok ok (10000 test cases)
Test #9:
score: 0
Accepted
time: 24ms
memory: 3764kb
input:
10000 154 183 17 8 28 144 3 227 218 175 43 0 209 191 38 123 96 107 56 179 204 230 197 204 188 100 217 43 189 158 161 254 191 83 240 178 150 193 187 123 122 48 157 207 135 103 84 235 62 53 66 77 2 234 237 56 156 219 127 51 184 225 70 138 102 218 53 203 153 39 98 75 171 45 134 159 215 212 128 35 190 1...
output:
3 0 255 0 73.21782178217821781402 255 255 0 180.26489795131187952870 255 255 255 19.17015644065492944829 3 0 0 255 130.30837004405286341790 0 255 255 22.98411661321433001673 255 255 255 11.44466170744234128232 3 0 255 0 62.02702702702702690363 0 255 255 272.83393729684208320330 255 255 255 3.0504311...
result:
ok ok (10000 test cases)
Test #10:
score: 0
Accepted
time: 25ms
memory: 3924kb
input:
10000 250 227 91 46 34 201 210 87 230 102 2 191 107 0 185 104 203 241 250 164 144 40 123 155 61 164 38 200 197 253 155 124 18 219 173 90 127 124 225 217 94 50 242 198 116 227 79 191 120 136 155 184 151 174 45 122 243 248 142 31 31 154 253 152 165 224 238 39 128 165 134 229 162 220 33 61 111 11 205 1...
output:
3 255 0 0 209.46428571428571432933 255 255 0 214.80850384033592645472 255 255 255 92.35844696645737283980 3 0 0 255 189.11483253588516746657 255 0 255 14.30084979384726338349 255 255 255 47.52775582714270174306 3 0 0 255 113.33333333333333332871 255 0 255 213.57304191273628632408 255 255 255 90.9926...
result:
ok ok (10000 test cases)
Test #11:
score: 0
Accepted
time: 24ms
memory: 3820kb
input:
10000 208 135 142 248 171 248 162 65 32 9 162 63 91 20 90 188 236 117 62 200 71 14 228 53 68 196 133 27 159 255 129 86 121 46 216 3 213 65 177 7 28 45 215 136 153 108 54 113 254 122 99 243 222 89 18 255 48 14 157 204 210 33 132 87 4 33 231 222 233 30 14 100 10 45 226 49 210 232 113 79 18 235 109 14 ...
output:
3 255 0 0 148.93805309734513274422 255 0 255 16.11036737558366964754 255 255 255 192.82513127183396267617 3 0 0 255 0.00000000000000000000 255 0 255 330.57242020471096766165 255 255 255 172.18340512372265196928 3 255 0 0 130.18421052631578946346 255 255 0 42.01335111865825993477 255 255 255 44.10729...
result:
ok ok (10000 test cases)
Test #12:
score: 0
Accepted
time: 24ms
memory: 3764kb
input:
10000 119 133 74 50 106 117 59 203 94 72 223 194 202 156 197 61 81 108 77 80 107 240 230 250 53 54 66 133 197 44 33 113 2 83 54 163 206 241 33 41 83 202 182 57 124 37 155 241 186 245 218 153 80 29 47 83 212 41 32 94 107 89 186 58 161 214 114 106 34 17 89 16 19 117 170 169 115 74 55 143 33 6 182 196 ...
output:
3 0 255 0 26.24999999999999999480 255 255 0 85.16837815564932712142 255 255 255 105.14497528779689758394 3 0 0 255 18.82550335570469797995 0 255 255 94.94535702992607627271 255 255 255 70.38180907156055624019 3 0 255 0 172.63975155279503106986 0 255 255 47.85188221495786184412 255 255 255 77.9410374...
result:
ok ok (10000 test cases)
Test #13:
score: 0
Accepted
time: 24ms
memory: 3992kb
input:
10000 170 100 234 20 253 12 243 196 46 206 129 235 149 5 166 232 179 7 149 75 45 98 197 156 206 22 133 230 176 54 159 228 135 170 92 118 90 61 180 9 26 18 21 65 122 40 143 87 125 192 199 176 35 144 44 85 243 153 238 203 227 9 212 200 74 226 253 135 20 139 117 222 230 43 212 42 201 224 22 222 152 191...
output:
3 0 0 255 192.00000000000000000000 255 0 255 118.62384695143178401505 255 255 255 114.85139473253393914420 3 0 255 0 252.82978723404255319562 255 255 0 8.39536575409785198760 255 255 255 16.69384158599627625101 3 255 0 0 203.13559322033898305038 255 255 0 186.76141133679559731828 255 255 255 47.8706...
result:
ok ok (10000 test cases)
Test #14:
score: 0
Accepted
time: 24ms
memory: 3840kb
input:
10000 67 216 241 14 40 250 28 215 219 200 241 181 3 167 13 227 218 113 85 72 151 116 20 162 202 252 17 54 184 231 49 90 219 117 173 19 37 53 223 10 195 119 118 128 187 46 208 215 54 85 104 71 99 34 234 95 0 44 223 10 14 248 47 123 70 75 245 118 231 131 187 137 34 62 21 4 118 233 40 183 96 242 97 190...
output:
3 0 0 255 163.46153846153846156408 0 255 255 214.72822797246307612029 255 255 255 68.60812019621516292395 3 0 0 255 249.06976744186046510143 0 255 255 27.51781169569266403963 255 255 255 18.76366532550011182595 3 0 0 255 25.50000000000000001908 0 255 255 282.61500558797791915477 255 255 255 28.77606...
result:
ok ok (10000 test cases)
Test #15:
score: 0
Accepted
time: 23ms
memory: 3824kb
input:
10000 252 245 224 4 171 9 240 190 208 69 15 254 4 230 90 0 255 17 6 26 58 150 187 237 239 242 146 255 227 231 232 117 26 44 255 111 183 1 9 121 85 207 15 245 120 247 181 40 1 255 164 244 139 255 131 248 27 161 24 241 63 44 16 207 36 251 15 227 163 49 7 180 27 7 23 61 254 235 14 8 11 200 7 3 26 254 3...
output:
3 255 0 0 178.49999999999999995837 255 255 0 180.34787533940643941555 255 255 255 236.36230324969885403796 3 0 255 0 167.92682926829268291735 0 255 255 5.36765683677076065093 255 255 255 5.75854760007882657529 3 255 0 0 173.61702127659574466934 255 0 255 74.12449676002226420929 255 255 255 238.53095...
result:
ok ok (10000 test cases)
Test #16:
score: 0
Accepted
time: 22ms
memory: 3828kb
input:
10000 10 7 240 232 252 180 5 169 10 1 40 6 252 2 242 245 8 5 249 17 249 255 2 233 12 3 1 2 6 253 252 254 2 251 245 6 254 4 252 10 244 245 254 218 52 255 8 4 20 112 248 253 0 254 250 234 1 226 245 216 11 6 2 245 139 0 8 28 233 1 11 24 246 250 253 9 124 17 255 26 1 14 251 46 2 14 248 233 1 44 12 255 1...
output:
3 0 0 255 239.38775510204081632681 255 0 255 3.09045337297718450973 255 255 255 9.84890567667777665391 3 0 255 0 221.73913043478260864738 255 255 0 178.29762675118244477646 255 255 255 188.41146461932723907284 3 0 255 0 165.48979591836734694132 0 255 255 5.40507452806103411711 255 255 255 7.20891115...
result:
ok ok (10000 test cases)
Test #17:
score: 0
Accepted
time: 22ms
memory: 3768kb
input:
10000 0 3 254 9 1 2 250 254 0 4 1 65 212 3 253 253 255 254 252 1 255 255 230 11 253 215 255 113 12 16 252 253 0 255 254 254 254 255 252 0 32 254 255 36 252 10 1 243 3 46 11 99 3 255 250 0 248 11 5 3 253 254 255 23 2 1 0 253 4 255 255 248 255 237 250 7 13 1 251 251 246 0 0 4 0 2 1 254 254 0 189 3 0 2...
output:
3 0 0 255 253.98809523809523809590 0 255 255 3.00002362046634710657 255 255 255 0.00000000000000000022 3 255 0 0 7.05533596837944664698 255 0 255 1.40027784603387431880 255 255 255 1.71176556814381582139 3 0 255 0 204.00000000000000000000 255 255 0 254.95097567963924149737 255 255 255 0.000000000000...
result:
ok ok (10000 test cases)
Test #18:
score: 0
Accepted
time: 19ms
memory: 3824kb
input:
10000 0 253 255 255 252 2 255 0 255 250 253 255 253 0 255 252 251 236 8 255 0 247 254 254 2 255 255 255 255 252 0 0 4 6 250 0 7 32 0 0 2 255 255 9 255 3 255 1 255 255 242 254 0 0 0 0 254 0 255 255 1 0 9 255 255 2 0 255 0 0 0 255 254 9 1 253 255 254 252 0 255 0 0 255 254 0 252 255 247 0 2 250 255 255...
output:
3 0 0 255 255.00000000000000000000 0 255 255 253.00000000000000000000 255 255 255 0.00000000000000000000 3 255 0 0 255.00000000000000000000 255 255 0 251.97628458498023715229 255 255 255 2.00014060028527984299 2 255 0 255 360.62445840513923744908 255 255 255 0.00000000000000000000 3 0 0 255 255.0000...
result:
ok ok (10000 test cases)
Test #19:
score: 0
Accepted
time: 17ms
memory: 4076kb
input:
10000 0 0 0 255 0 255 0 255 255 255 255 1 0 0 0 0 255 1 255 0 254 0 255 0 0 203 255 0 2 0 255 0 255 255 254 0 255 0 255 255 255 228 0 255 255 0 255 255 0 254 0 253 0 0 242 0 0 255 0 0 255 252 0 0 0 0 0 0 0 255 255 255 0 0 255 255 255 0 4 255 0 0 1 0 0 0 255 0 253 253 0 255 255 0 0 255 255 0 0 1 255 ...
output:
3 0 0 255 0.00000000000000000000 0 255 255 0.00000000000000000000 255 255 255 0.00000000000000000000 2 255 0 255 360.62445840513923744908 255 255 255 0.00000000000000000000 2 0 255 255 360.62445840513923744908 255 255 255 0.00000000000000000000 2 255 255 0 360.62445840513923744908 255 255 255 1.0000...
result:
ok ok (10000 test cases)
Test #20:
score: 0
Accepted
time: 16ms
memory: 3828kb
input:
10000 0 0 0 0 255 255 255 0 255 255 255 0 255 255 255 255 0 0 255 255 255 0 0 255 0 0 0 0 0 255 255 255 0 0 0 255 255 0 0 0 0 0 255 255 0 0 0 255 0 0 0 255 255 0 0 0 255 0 255 0 255 0 255 0 255 255 0 255 0 0 255 0 1 0 255 255 0 254 255 0 255 255 255 255 0 255 255 255 0 255 255 0 255 0 255 255 255 25...
output:
3 0 0 255 0.00000000000000000000 0 255 255 0.00000000000000000000 255 255 255 0.00000000000000000000 2 0 255 255 360.62445840513923744908 255 255 255 0.00000000000000000000 2 255 0 255 360.62445840513923744908 255 255 255 0.00000000000000000000 2 255 255 0 360.62445840513923744908 255 255 255 0.0000...
result:
ok ok (10000 test cases)