結果

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

ソースコード

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))
        {
            return 0;
        }
        std::swap(a.at(15),a.at(i));
    }
    std::cout<<"Yes"<<'\n';
}
0