結果

問題 No.5007 Steiner Space Travel
ユーザー FplusFplusFFplusFplusF
提出日時 2022-07-30 14:33:30
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,264 bytes
コンパイル時間 2,239 ms
実行使用メモリ 3,548 KB
スコア 1,132,892
最終ジャッジ日時 2022-07-30 14:33:36
合計ジャッジ時間 4,971 ms
ジャッジサーバーID
(参考情報)
judge14 / judge10
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
3,384 KB
testcase_01 AC 2 ms
3,516 KB
testcase_02 AC 2 ms
3,392 KB
testcase_03 AC 2 ms
3,448 KB
testcase_04 AC 1 ms
3,388 KB
testcase_05 AC 2 ms
3,440 KB
testcase_06 AC 2 ms
3,492 KB
testcase_07 AC 2 ms
3,396 KB
testcase_08 AC 1 ms
3,392 KB
testcase_09 AC 2 ms
3,388 KB
testcase_10 AC 2 ms
3,516 KB
testcase_11 AC 2 ms
3,392 KB
testcase_12 AC 2 ms
3,456 KB
testcase_13 AC 1 ms
3,392 KB
testcase_14 AC 1 ms
3,388 KB
testcase_15 WA -
testcase_16 AC 2 ms
3,456 KB
testcase_17 AC 2 ms
3,496 KB
testcase_18 AC 2 ms
3,448 KB
testcase_19 AC 1 ms
3,388 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 2 ms
3,396 KB
testcase_23 AC 2 ms
3,452 KB
testcase_24 AC 1 ms
3,440 KB
testcase_25 AC 2 ms
3,452 KB
testcase_26 AC 2 ms
3,392 KB
testcase_27 AC 1 ms
3,548 KB
testcase_28 AC 1 ms
3,456 KB
testcase_29 AC 2 ms
3,452 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define rep(i,n) for (long long i=0;i<(long long)(n);i++)
#define all(v) v.begin(),v.end()
using ll=long long;
using pll=pair<ll,ll>;
using tll=tuple<ll,ll,ll>;
const ll inf=-(1ll<<60),INF=(1ll<<60);
template<class T> void chmin(T &a,T b){
    if(a>b){
        a=b;
    }
}
template<class T> void chmax(T &a,T b){
    if(a<b){
        a=b;
    }
}
int main(){
    ll n,m;
    cin >> n >> m;
    vector<ll> a(n),b(n);
    vector<tll> v;
    rep(i,n){
        cin >> a[i] >> b[i];
        if(1<=i)v.emplace_back((a[i]-a[i-1])*(a[i]-a[i-1])+(b[i]-b[i-1])*(b[i]-b[i-1]),i-1,i);
    }
    sort(all(v));
    reverse(all(v));
    vector<pll> u(m);
    vector<pll> ans;
    for(int i=1;i<=n;i++){
        ans.push_back({1,i});
    }
    rep(i,m){
        ll w,x,y;
        tie(w,x,y)=v[i];
        u[i]={(a[x]+a[y])/2,(b[x]+b[y])/2};
        rep(j,ans.size()){
            if(ans[j].second==x){
                ans.insert(ans.begin()+j,{2,i+1});
                break;
            }
        }
    }
    ans.push_back({1,1});
    rep(i,m){
        cout << u[i].first << " " << u[i].second << endl;
    }
    cout << ans.size() << endl;
    rep(i,ans.size()){
        cout << ans[i].first << " " << ans[i].second << endl;
    }
}
0