結果
| 問題 | No.2104 Multiply-Add |
| コンテスト | |
| ユーザー |
sortreew
|
| 提出日時 | 2022-10-21 22:48:05 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 18 ms / 2,000 ms |
| コード長 | 6,010 bytes |
| コンパイル時間 | 1,820 ms |
| コンパイル使用メモリ | 201,056 KB |
| 最終ジャッジ日時 | 2025-02-08 10:19:48 |
|
ジャッジサーバーID (参考情報) |
judge3 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 32 |
ソースコード
#include "bits/stdc++.h"
#define YES "YES"
#define NO "NO"
#define Yes "Yes"
#define No "No"
#define DEFAULT \
LL ans = solve(); \
if (ans == NONE) \
{ \
} \
else \
{ \
cout << ans << endl; \
}
#define YESNO three(solve(), (OUT(YES), 1), (OUT(NO), 0))
#define YesNo three(solve(), OUT(Yes), OUT(No))
#define ECHO OUT(solve())
#define three(A, B, C) ((A) ? (B) : (C))
#define FOR(i, a, b) for (LL i = (a); i < (LL)(b); i++)
#define EFOR(i, a, b) for (LL i = (a); i <= (LL)(b); i++)
#define RFOR(i, a, b) for (LL i = (b - 1); i >= (LL)(a); i--)
#define REP(i, b) FOR(i, zero, b)
#define rep REP
#define EREP(i, b) EFOR(i, zero, b)
#define RREP(i, b) RFOR(i, zero, b)
#define ALL(c) c.begin(), c.end()
#define UNIQUE(c) \
sort(ALL(c)); \
c.erase(unique(ALL(c)), c.end())
#define MAX(c) (*max_element(ALL(c)))
#define MIN(c) (*min_element(ALL(c)))
#define MP make_pair
#define FI first
#define SE second
#define SI(x) (LL(x.size()))
#define PB push_back
#define DEBUG(a) OUT(a)
#define DEBUG2(a, b) OUT2(a, b)
#define cat cout << __LINE__ << endl
#define OUT(a) cout << (a) << endl
#define OUT2(a, b) cout << (a) << " " << (b) << endl
#define zero 0LL
#define all ALL
#define pb emplace_back
#define eb pb
#define int long long
using namespace std;
template <typename T>
inline void maximize(T &a, T b) { a = max(a, b); }
template <typename T>
inline void minimize(T &a, T b) { a = min(a, b); }
template <typename T>
inline bool middle(T a, T b, T c) { return b <= a && a <= c; }
template <class T>
inline bool MX(T &l, const T &r) { return l < r ? l = r, 1 : 0; }
template <class T>
inline bool MN(T &l, const T &r) { return l > r ? l = r, 1 : 0; }
typedef int LL;
typedef double ld;
typedef int ut;
typedef vector<ut> VI;
typedef vector<VI> VII;
typedef pair<ut, ut> pr;
typedef pair<ut, pr> ppr;
typedef vector<pr> Vpr;
typedef vector<ppr> Vppr;
typedef tuple<int, int, int, int> tapu;
typedef vector<tapu> Vtapu;
typedef priority_queue<pr, Vpr> PQ;
inline void outputVI(VI x)
{
REP(i, SI(x)) { cout << three(i, " ", "") << x[i]; }
OUT("");
}
const int SIZE1 = 5e5 + 1000;
const int SIZE2 = 5010;
const int SIZE3 = 430;
const int SIZE = SIZE1;
const int MAPSIZE = 40;
const LL p998 = 998244353;
const LL p107 = 1000000007;
const LL p = p107;
const LL INF = 1LL << 60;
const long double EPS = 1e-7;
const LL NONE = -2;
#define endl "\n"
ut N, M, D, Q, I, S, V, F;
VI edges[SIZE];
LL vals[SIZE], answer = zero;
// LL A[SIZE],B[SIZE],C[SIZE];
bool calced[100][100][100][3][3];
LL dp[100][100][100][3][3];
LL X, Y, K, P;
Vpr ans;
Vpr revans;
void add(LL a, LL b)
{
ans.pb(a, b);
}
void revadd(LL a, LL b)
{
revans.pb(a, b);
}
LL revsolve(LL a, LL b)
{
if (a == 0)
{
revadd(1, 1);
a = b;
}
if (b == 0)
{
revadd(2, 1);
b = a;
}
LL mini = gcd(abs(a), abs(b));
while (a != mini or b != mini)
{
if (abs(a) < abs(b))
{
if (abs(a) / a == abs(b) / b)
{
revadd(2, -((abs(b) - 1) / abs(a)));
b -= (abs(b) - 1) / abs(a) * a;
}
else
{
revadd(2, +((abs(b) - 1) / abs(a)));
b += (abs(b) - 1) / abs(a) * a;
}
}
else if (abs(a) > abs(b))
{
if (abs(a) / a == abs(b) / b)
{
revadd(1, -((abs(a) - 1) / abs(b)));
a -= (abs(a) - 1) / abs(b) * b;
}
else
{
revadd(1, +((abs(a) - 1) / abs(b)));
a += (abs(a) - 1) / abs(b) * b;
}
}
else if (a != mini)
{
if (b != mini)
{
revadd(1, -2);
}
else
{
revadd(1, 2);
}
a = mini;
}
else
{
revadd(2, 2);
b = mini;
}
}
return 0;
}
LL solve()
{
LL a, b, c, d;
cin >> a >> b >> c >> d;
if (a == c and b == d)
return 0;
if ((a == 0 and b == 0) or (c == 0 and d == 0))
return -1;
if (gcd(abs(a), abs(b)) != gcd(abs(c), abs(d)))
return -1;
if (a == 0)
{
add(1, 1);
a = b;
}
if (b == 0)
{
add(2, 1);
b = a;
}
LL mini = gcd(abs(a), abs(b));
while (a != mini or b != mini)
{
if (abs(a) < abs(b))
{
if (abs(a) / a == abs(b) / b)
{
add(2, -((abs(b) - 1) / abs(a)));
b -= (abs(b) - 1) / abs(a) * a;
}
else
{
add(2, +((abs(b) - 1) / abs(a)));
b += (abs(b) - 1) / abs(a) * a;
}
}
else if (abs(a) > abs(b))
{
if (abs(a) / a == abs(b) / b)
{
add(1, -((abs(a) - 1) / abs(b)));
a -= (abs(a) - 1) / abs(b) * b;
}
else
{
add(1, +((abs(a) - 1) / abs(b)));
a += (abs(a) - 1) / abs(b) * b;
}
}
else if (a != mini)
{
if (b != mini)
{
add(1, -2);
}
else
{
add(1, 2);
}
a = mini;
}
else
{
add(2, 2);
b = mini;
}
}
revsolve(c, d);
return ans.size() + revans.size();
}
signed main()
{
ios_base::sync_with_stdio(false);
cout << fixed << setprecision(10);
LL T = 1;
REP(i, T)
{
DEFAULT;
}
for (auto x : ans)
{
cout << x.first << " " << x.second << endl;
}
RREP(i, revans.size())
{
cout << revans[i].first << " " << -revans[i].second << endl;
}
return 0;
}
sortreew