結果
| 問題 | No.3664 Manhattan Circumcenter |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2026-08-30 14:53:20 |
| 言語 | C++23 (gcc 15.3.0 + boost 1.92.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 6,245 bytes |
| 記録 | |
| コンパイル時間 | 5,712 ms |
| コンパイル使用メモリ | 417,108 KB |
| 実行使用メモリ | 6,400 KB |
| 最終ジャッジ日時 | 2026-08-30 14:54:29 |
| 合計ジャッジ時間 | 41,144 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 46 WA * 11 |
ソースコード
#pragma GCC optimize("O3,unroll-loops")
// #pragma GCC target("avx2")
#include <bits/stdc++.h>
using namespace std;
#include <atcoder/all>
using namespace atcoder;
// #include <boost/multiprecision/cpp_int.hpp>
// using namespace boost::multiprecision;
#define ll long long
#define ld long double
#define rep(i, n) for (ll i = 0; i < (ll)(n); ++i)
#define vi vector<int>
#define vl vector<ll>
#define vd vector<double>
#define vb vector<bool>
#define vs vector<string>
#define vc vector<char>
#define ull unsigned long long
#define all(a) (a).begin(), (a).end()
#define rall(a) (a).rbegin(), (a).rend()
template<class T, class U>
inline bool chmax(T &a, const U &b) {
if (a < b) {
a = b;
return true;
}
return false;
}
template<class T, class U>
inline bool chmin(T &a, const U &b) {
if (a > b) {
a = b;
return true;
}
return false;
}
// #define ll int
// #define ll int128_t
// #define ll int256_t
// #define ll cpp_int
constexpr ll inf = (1ll << 61);
// constexpr ll inf = (1 << 30);
// const double PI=3.1415926535897932384626433832795028841971;
uint32_t xor_x = 123456789, xor_y = 362436069, xor_z = 521288629, xor_w = 88675123;
inline uint32_t xor_next() {
uint32_t t = xor_x ^ (xor_x << 11);
xor_x = xor_y; xor_y = xor_z; xor_z = xor_w;
return xor_w = (xor_w ^ (xor_w >> 19)) ^ (t ^ (t >> 8));
}
inline int rnd(int max_val) { return xor_next() % max_val; }
struct Timer {
std::chrono::steady_clock::time_point start_time;
Timer() {
reset();
}
// 測定の起点リセット用
void reset() {
start_time = std::chrono::steady_clock::now();
}
// スタートからの経過時間をミリ秒(msec)で返す
long long get_ms() const {
auto now = std::chrono::steady_clock::now();
return std::chrono::duration_cast<std::chrono::milliseconds>(now - start_time).count();
}
};
// ll rui(ll a,ll b){
// if(b==0)return 1;
// if(b%2==1) return a*rui(a*a,b/2);
// return rui(a*a,b/2);
// }
// vl fact;
// ll kai(ll n){
// fact.resize(n,1);
// rep(i,n-1)fact[i+1]=fact[i]*(i+1);
// }
// using mint = ld;
using mint = modint998244353;//static_modint<998244353>
// using mint = modint1000000007;//static_modint<1000000007>
// using mint = static_modint<922267487>; // 多分落とされにくい NOT ntt-friendly
// using mint = static_modint<469762049>; // ntt-friendly
// using mint = static_modint<167772161>; // ntt-friendly
// using mint = modint;//mint::set_mod(mod);
// ll const mod=1000000007ll;
// ll const mod=998244353ll;
// ll modrui(ll a,ll b,ll mod){
// a%=mod;
// if(b==0)return 1;
// if(b%2==1) return a*modrui(a*a%mod,b/2,mod)%mod;
// return modrui(a*a%mod,b/2,mod)%mod;
// }
// void incr(vl &v,ll n){// n進法
// ll k=v.size();
// v[k-1]++;
// ll now=k-1;
// while (v[now]>=n)
// {
// v[now]=0;
// if(now==0)break;
// v[now-1]++;
// now--;
// }
// return;
// }
vector<mint> fact,invf;
void init_modfact(ll sz){
fact.resize(sz);
invf.resize(sz);
fact[0]=1;
rep(i,sz-1){
fact[i+1]=fact[i]*(i+1);
}
invf[sz-1]=1/fact[sz-1];
for(ll i=sz-2; i>=0; i--){
invf[i]=invf[i+1]*(i+1);
}
}
mint choose(ll n,ll r){
if(n<r || r<0 || n<0)return 0;
return fact[n]*invf[r]*invf[n-r];
}
// vector<mint> modpow,invpow;
// void init_modpow(ll x,ll sz){
// mint inv=1/mint(x);
// modpow.assign(sz,1);
// invpow.assign(sz,1);
// rep(i,sz-1){
// modpow[i+1]=modpow[i]*x;
// invpow[i+1]=invpow[i]*inv;
// }
// }
// long long phi(long long n) {// O(sqrt(n))
// long long res = n;
// for (long long i = 2; i * i <= n; i++) {
// if (n % i == 0) {
// res -= res / i;
// while (n % i == 0) n /= i;
// }
// }
// if (n > 1) res -= res / n;
// return res;
// }
void solve(){
ll px,py,qx,qy,rx,ry;
cin >> px >> py >> qx >> qy >> rx >> ry;
px*=2;
py*=2;
qx*=2;
qy*=2;
rx*=2;
ry*=2;
// ll x1,x2,x3,y1,y2,y3,m1,m2,m3;
// x1=(px+qx)/2;
// x2=(qx+rx)/2;
// x3=(rx+px)/2;
// y1=(py+qy)/2;
// y2=(qy+ry)/2;
// y3=(ry+py)/2;
// if(px==qx)m1=2;
// else if(py==qy)m1=0;
// else{
// if((px-qx)*(py-qy)>0)m1=3;
// else m1=1;
// }
// if(rx==qx)m2=2;
// else if(ry==qy)m2=0;
// else{
// if((rx-qx)*(ry-qy)>0)m2=3;
// else m2=1;
// }
// if(px==rx)m3=2;
// else if(py==ry)m3=0;
// else{
// if((px-rx)*(py-ry)>0)m3=3;
// else m3=1;
// }
// auto check=[](ll const i,ll const j,ll const x,ll const y,ll const m){
// if(m==0){
// if(i==x)return 1;
// }
// if(m==1){
// if(x-y==i-j)return 1;
// }
// if(m==2){
// if(j==y)return 1;
// }
// if(m==3){
// if(x+y==i+j)return 1;
// }
// return 0;
// };
vector<pair<ll,ll>> ans;
// rep(i,209)rep(j,209){
// ll ok=0;
// ok+=check(i,j,x1,y1,m1);
// ok+=check(i,j,x2,y2,m2);
// ok+=check(i,j,x3,y3,m3);
// if(ok==3)ans.push_back({i,j});
// }
for(ll i=-10000;i<=10000;i++)for(ll j=-10000;j<=10000;j++){
ll d1=abs(px-i)+abs(py-j);
ll d2=abs(qx-i)+abs(qy-j);
ll d3=abs(rx-i)+abs(ry-j);
if(d1==d2 && d2==d3)ans.push_back({i,j});
if(ans.size()>=10000){
cout << -1 << endl;
return;
}
}
// cerr << ans.size() << endl;
{
sort(all(ans));
cout << ans.size() << endl;
rep(i,ans.size()){
cout << ans[i].first/2. << " " << ans[i].second/2. << endl;
}
}
}
int main(){
ios::sync_with_stdio(false);
std::cin.tie(nullptr);
// ll mx=450;
// vc fl(mx+1,0);
// for(ll d=2;d<=mx;d++){
// if(fl[d])continue;
// ll x=d;
// ps.push_back(x);
// while(x<=mx){
// fl[x]=1;
// x+=d;
// }
// }
ll t = 1;
// cin >> t;
while (t--){
solve();
}
}