結果

問題 No.1523 +/- Tree
ユーザー otoshigo
提出日時 2023-12-09 20:15:00
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 1,027 bytes
コンパイル時間 893 ms
コンパイル使用メモリ 77,188 KB
最終ジャッジ日時 2025-02-18 09:50:41
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 44
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>
#include<set>
#include<numeric>
using namespace std;
using ll=long long;
#define all(v) v.begin(),v.end()
#define rall(v) v.rbegin(),v.rend()
template<class T> bool chmax(T &a, T b){if (a < b){a = b;return true;} else return false;}
template<class T> bool chmin(T &a, T b){if (a > b){a = b;return true;} else return false;}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    int N,K;
    cin>>N>>K;
    if(K==1||K==N-1){
        cout<<"No"<<"\n";
        return 0;
    }
    if(K==2){
        if(N%2==1){
            cout<<"No"<<"\n";
        }else{
            cout<<"Yes"<<"\n";
            for(int i=0;i<N-1;i++){
                cout<<i+1<<" "<<i+2<<" ";
                if(i%2==0)cout<<N/2<<"\n";
                else cout<<-(N/2+1)<<"\n";
            }
        }
    }else{
        cout<<"Yes"<<"\n";
        for(int i=0;i<K-1;i++)cout<<i+1<<" "<<i+2<<" "<<-2<<"\n";
        for(int i=K;i<N;i++)cout<<K<<" "<<i+1<<" "<<2*(K-1)-1<<"\n";
    }
}
0