結果

問題 No.2797 Square Tile
ユーザー makichanmakichan
提出日時 2024-06-29 14:52:08
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 27 ms / 2,000 ms
コード長 1,938 bytes
コンパイル時間 5,100 ms
コンパイル使用メモリ 318,252 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-29 14:52:16
合計ジャッジ時間 7,160 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,812 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 27 ms
6,940 KB
testcase_05 AC 22 ms
6,944 KB
testcase_06 AC 15 ms
6,944 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 3 ms
6,944 KB
testcase_09 AC 11 ms
6,944 KB
testcase_10 AC 18 ms
6,944 KB
testcase_11 AC 9 ms
6,940 KB
testcase_12 AC 11 ms
6,940 KB
testcase_13 AC 3 ms
6,944 KB
testcase_14 AC 12 ms
6,940 KB
testcase_15 AC 8 ms
6,940 KB
testcase_16 AC 5 ms
6,944 KB
testcase_17 AC 3 ms
6,940 KB
testcase_18 AC 3 ms
6,944 KB
testcase_19 AC 12 ms
6,944 KB
testcase_20 AC 8 ms
6,944 KB
testcase_21 AC 19 ms
6,940 KB
testcase_22 AC 3 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using mint = atcoder::static_modint<998244353>;
//using mint = atcoder::static_modint<1000000007>;
using namespace std;
using namespace atcoder;
using ld = long double;
using ll = long long;
#define mp(a,b) make_pair(a,b)
#define rep(i,s,n) for(int i=s; i<n; i++)

int main(){
    int a,b;
    cin >> a >> b;
    if(a==b){
        set<pair<ll,ll>> S;
        int k=a*a+b*b;
        rep(i,0,2*a)rep(j,0,2*a)S.insert(mp(i*a,j*a));
        for(auto p:S)cout << p.first << " " << p.second << "\n";
    }
    else{
        ll k=a*a+b*b;
        set<pair<ll,ll>> A,B;
        queue<pair<ll,ll>> Q;
        Q.push(mp(0,0));
        A.insert(mp(0,0));
        while(Q.size()>0){
            auto p=Q.front();
            Q.pop();
            int x=p.first,y=p.second;
            x+=a,y+=b;
            x+=k,y+=k;
            x%=k,y%=k;
            if(A.find(mp(x,y))==A.end()){
                Q.push(mp(x,y));
                A.insert(mp(x,y));
            }
            x-=a,y-=b;

            x+=b,y-=a;
            x+=k,y+=k;
            x%=k,y%=k;
            if(A.find(mp(x,y))==A.end()){
                Q.push(mp(x,y));
                A.insert(mp(x,y));
            }
            x-=b,y+=a;

            x-=a,y-=b;
            x+=k,y+=k;
            x%=k,y%=k;
            if(A.find(mp(x,y))==A.end()){
                Q.push(mp(x,y));
                A.insert(mp(x,y));
            }
            x+=a,y+=b;

            x-=b,y+=a;
            x+=k,y+=k;
            x%=k,y%=k;
            if(A.find(mp(x,y))==A.end()){
                Q.push(mp(x,y));
                A.insert(mp(x,y));
            }
        }
        for(auto p:A){
            int x=p.first,y=p.second;
            x+=a;
            x%=k;
            B.insert(mp(x,y));
        }

        for(auto p:A)cout << p.first << " " << p.second << "\n";
        for(auto p:B)cout << p.first << " " << p.second << "\n";
    }
}
0