結果

問題 No.800 四平方定理
ユーザー FF256grhyFF256grhy
提出日時 2019-03-17 21:41:00
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 679 ms / 2,000 ms
コード長 2,365 bytes
コンパイル時間 1,427 ms
コンパイル使用メモリ 176,168 KB
実行使用メモリ 117,304 KB
最終ジャッジ日時 2024-07-07 21:20:35
合計ジャッジ時間 11,401 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
5,248 KB
testcase_01 AC 12 ms
5,704 KB
testcase_02 AC 9 ms
5,376 KB
testcase_03 AC 9 ms
5,460 KB
testcase_04 AC 8 ms
5,376 KB
testcase_05 AC 9 ms
5,376 KB
testcase_06 AC 13 ms
6,368 KB
testcase_07 AC 10 ms
5,592 KB
testcase_08 AC 13 ms
6,240 KB
testcase_09 AC 15 ms
5,888 KB
testcase_10 AC 301 ms
60,068 KB
testcase_11 AC 360 ms
88,668 KB
testcase_12 AC 354 ms
87,944 KB
testcase_13 AC 317 ms
61,600 KB
testcase_14 AC 361 ms
88,672 KB
testcase_15 AC 363 ms
88,360 KB
testcase_16 AC 365 ms
89,092 KB
testcase_17 AC 364 ms
88,960 KB
testcase_18 AC 365 ms
88,804 KB
testcase_19 AC 362 ms
88,892 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 366 ms
89,092 KB
testcase_23 AC 636 ms
117,304 KB
testcase_24 AC 642 ms
117,300 KB
testcase_25 AC 643 ms
116,900 KB
testcase_26 AC 1 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 629 ms
116,796 KB
testcase_29 AC 679 ms
117,068 KB
testcase_30 AC 678 ms
116,852 KB
testcase_31 AC 592 ms
112,440 KB
testcase_32 AC 643 ms
117,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long   signed int LL;
typedef long long unsigned int LU;
#define incII(i, l, r) for(int i = (l)    ; i <= (r); ++i)
#define incID(i, l, r) for(int i = (l)    ; i <  (r); ++i)
#define decII(i, l, r) for(int i = (r)    ; i >= (l); --i)
#define decID(i, l, r) for(int i = (r) - 1; i >= (l); --i)
#define inc(i, n)  incID(i, 0, n)
#define inc1(i, n) incII(i, 1, n)
#define dec(i, n)  decID(i, 0, n)
#define dec1(i, n) decII(i, 1, n)
#define inII(v, l, r) ((l) <= (v) && (v) <= (r))
#define inID(v, l, r) ((l) <= (v) && (v) <  (r))
#define PB push_back
#define EB emplace_back
#define MP make_pair
#define FI first
#define SE second
#define  ALL(v)  v.begin(),  v.end()
#define RALL(v) v.rbegin(), v.rend()
template<typename T> bool setmin  (T & a, T b) { if(b <  a) { a = b; return true; } else { return false; } }
template<typename T> bool setmax  (T & a, T b) { if(b >  a) { a = b; return true; } else { return false; } }
template<typename T> bool setmineq(T & a, T b) { if(b <= a) { a = b; return true; } else { return false; } }
template<typename T> bool setmaxeq(T & a, T b) { if(b >= a) { a = b; return true; } else { return false; } }
LL mo(LL a, LL b) { assert(b > 0); a %= b; if(a < 0) { a += b; } return a; }
LL fl(LL a, LL b) { assert(b > 0); return (a > 0 ? a / b : (a - b + 1) / b); }
LL ce(LL a, LL b) { assert(b > 0); return (a < 0 ? a / b : (a + b - 1) / b); }
#define bit(b, i) (((b) >> (i)) & 1)
#define BC __builtin_popcountll
#define SC(T, v) static_cast<T>(v)
#define SI(v) SC(int, v.size())
#define SL(v) SC( LL, v.size())
#define RF(e, v) for(auto & e: v)
#define ei else if
#define UR assert(false)

// ---- ----

template<typename T> vector<pair<T, LL>> cc(vector<T> v) {
	vector<pair<T, LL>> a;
	inc(i, v.size()) {
		if(i == 0 || v[i] != v[i - 1]) { a.EB(v[i], 1); } else { a.back().SE++; }
	}
	return a;
}

int n, d;
vector<int> v, pp, pm;

int main() {
	cin >> n >> d;
	
	inc1(i, n) { v.PB(i * i); }
	
	inc(i, SI(v)) {
	inc(j, SI(v)) {
		pp.PB(v[i] + v[j]);
		pm.PB(v[i] - v[j]);
	}
	}
	sort(ALL(pp));
	sort(ALL(pm));
	
	auto P = cc(pp);
	auto M = cc(pm);
	
	LL ans = 0;
	int j = SI(M) - 1;
	inc(i, SI(P)) {
		while(j >= 0 && P[i].FI + M[j].FI > d) { j--; }
		if(j < 0) { break; }
		if(P[i].FI + M[j].FI == d) { ans += P[i].SE * M[j].SE; }
	}
	
	cout << ans << endl;
	
	return 0;
}
0