結果

問題 No.228 ゆきこちゃんの 15 パズル
ユーザー ngtkana
提出日時 2020-03-22 19:28:31
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 639 bytes
コンパイル時間 2,700 ms
コンパイル使用メモリ 194,044 KB
最終ジャッジ日時 2025-01-09 09:39:01
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 12 WA * 5
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using lint=long long;
int main(){
    std::cin.tie(nullptr);std::ios_base::sync_with_stdio(false);
    std::cout.setf(std::ios_base::fixed);std::cout.precision(15);
    std::vector<lint>a(16);
    for(lint i=0;i<16;i++){
        lint x;std::cin>>x;
        a.at(x?x-1:15)=i;
    }
    while(!std::is_sorted(a.begin(),a.end())){
        lint i=a.at(15),j=a.at(i);
        if(std::abs(a.at(i)-a.at(j))==4||std::abs(a.at(i)-a.at(j))==1&&a.at(i)/4==a.at(j)/4){
            std::swap(a.at(i),a.at(j));
        }else{
            std::cout<<"No"<<'\n';
            return 0;
        }
    }
    std::cout<<"Yes"<<'\n';
}
0