結果

問題 No.471 直列回転機
ユーザー chaemonchaemon
提出日時 2016-12-21 00:24:04
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 409 ms / 3,141 ms
コード長 4,389 bytes
コンパイル時間 2,113 ms
コンパイル使用メモリ 173,648 KB
実行使用メモリ 24,456 KB
平均クエリ数 19589.39
最終ジャッジ日時 2023-09-02 03:38:51
合計ジャッジ時間 15,386 ms
ジャッジサーバーID
(参考情報)
judge14 / judge16
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
24,300 KB
testcase_01 AC 25 ms
24,276 KB
testcase_02 AC 26 ms
23,604 KB
testcase_03 AC 25 ms
23,988 KB
testcase_04 AC 25 ms
23,424 KB
testcase_05 AC 27 ms
23,808 KB
testcase_06 AC 26 ms
24,000 KB
testcase_07 AC 27 ms
23,388 KB
testcase_08 AC 50 ms
23,604 KB
testcase_09 AC 56 ms
23,628 KB
testcase_10 AC 36 ms
23,616 KB
testcase_11 AC 160 ms
23,508 KB
testcase_12 AC 309 ms
23,388 KB
testcase_13 AC 324 ms
23,640 KB
testcase_14 AC 349 ms
23,640 KB
testcase_15 AC 409 ms
24,024 KB
testcase_16 AC 28 ms
23,532 KB
testcase_17 AC 24 ms
23,412 KB
testcase_18 AC 24 ms
24,276 KB
testcase_19 AC 25 ms
23,364 KB
testcase_20 AC 364 ms
23,820 KB
testcase_21 AC 94 ms
23,388 KB
testcase_22 AC 327 ms
23,628 KB
testcase_23 AC 296 ms
23,628 KB
testcase_24 AC 186 ms
23,388 KB
testcase_25 AC 77 ms
24,288 KB
testcase_26 AC 353 ms
23,604 KB
testcase_27 AC 181 ms
24,276 KB
testcase_28 AC 212 ms
24,000 KB
testcase_29 AC 236 ms
23,640 KB
testcase_30 AC 115 ms
23,388 KB
testcase_31 AC 353 ms
24,444 KB
testcase_32 AC 303 ms
23,952 KB
testcase_33 AC 237 ms
23,424 KB
testcase_34 AC 341 ms
24,024 KB
testcase_35 AC 99 ms
23,796 KB
testcase_36 AC 153 ms
23,628 KB
testcase_37 AC 53 ms
23,412 KB
testcase_38 AC 83 ms
24,288 KB
testcase_39 AC 138 ms
23,952 KB
testcase_40 AC 262 ms
24,276 KB
testcase_41 AC 368 ms
23,832 KB
testcase_42 AC 236 ms
24,240 KB
testcase_43 AC 323 ms
24,444 KB
testcase_44 AC 60 ms
23,412 KB
testcase_45 AC 229 ms
23,352 KB
testcase_46 AC 255 ms
23,376 KB
testcase_47 AC 325 ms
23,628 KB
testcase_48 AC 283 ms
23,640 KB
testcase_49 AC 274 ms
23,664 KB
testcase_50 AC 319 ms
24,216 KB
testcase_51 AC 152 ms
24,456 KB
testcase_52 AC 29 ms
24,012 KB
testcase_53 AC 31 ms
23,628 KB
testcase_54 AC 28 ms
24,024 KB
testcase_55 AC 102 ms
23,592 KB
testcase_56 AC 88 ms
24,228 KB
testcase_57 AC 67 ms
23,988 KB
testcase_58 AC 40 ms
24,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// #includes {{{
#include <bits/stdc++.h>
using namespace std;
// }}}
// pre-written code {{{
#define REP(i,n) for(int i=0;i<(int)(n);++i)
#define RREP(i,a,b) for(int i=(int)(a);i<(int)(b);++i)
#define FOR(i,c) for(__typeof((c).begin()) i=(c).begin();i!=(c).end();++i)
#define LET(x,a) __typeof(a) x(a)
//#define IFOR(i,it,c) for(__typeof((c).begin())it=(c).begin();it!=(c).end();++it,++i)
#define ALL(c) (c).begin(), (c).end()
#define MP make_pair

#define EXIST(e,s) ((s).find(e)!=(s).end())

#define RESET(a) memset((a),0,sizeof(a))
#define SET(a) memset((a),-1,sizeof(a))
#define PB push_back
#define DEC(it,command) __typeof(command) it=command

//debug
#define dump(x)  cerr << #x << " = " << (x) << endl;
#define debug(x) cerr << #x << " = " << (x) << " (L" << __LINE__ << ")" << " " << __FILE__ << endl;
#define debug2(x) cerr << #x << " = [";REP(__ind,(x).size()){cerr << (x)[__ind] << ", ";}cerr << "] (L" << __LINE__ << ")" << endl;

const int INF=0x3f3f3f3f;

typedef long long Int;
typedef unsigned long long uInt;
#ifdef __MINGW32__
typedef double rn;
#else
typedef long double rn;
#endif

typedef pair<int,int> pii;

/*
#ifdef MYDEBUG
#include"debug.h"
#include"print.h"
#endif
*/
// }}}

typedef rn Num;
const Num mod = 998244353;

//{{{ mat
typedef rn nm;
typedef vector<nm> vec;
typedef vector<vec> mat;

//int
/*
nm add(const nm &x,const nm &y){return (x+y)%mod;}
nm opposite(const nm &n){return ((-n)%mod+mod)%mod;}
nm mul(const nm &x,const nm &y){return (unsigned long long)x*y%mod;}
//nm inverse(const nm &n){return invMod(n,mod);}
//nm modulo(const nm &n,int mod=::mod){return ((n+mod)%mod+mod)%mod;}
*/

//real number
nm add(const nm &x,const nm &y){return x+y;}
nm opposite(const nm &n){return -n;}
nm mul(const nm &x,const nm &y){return x*y;}
nm inverse(const nm &n){return 1L/n;}


// O( n )
mat identity(int n) {
	mat A(n, vec(n));
	for (int i = 0; i < n; ++i) A[i][i] = 1;
	return A;
}
// O( n )
nm inner_product(const vec &a, const vec &b) {
	nm ans = 0;
	for (int i = 0; i < a.size(); ++i)
		ans = add(ans,mul(a[i],b[i]));
	return ans;
}
mat add(const mat &A, const mat &B) {
	mat C(A.size(), vec(B[0].size()));
	for (int i = 0; i < C.size(); ++i)
		for (int j = 0; j < C[i].size(); ++j)
				C[i][j] = add(A[i][j],B[i][j]);
	return C;
}
// O( n^2 )
vec mul(const mat &A, const vec &x) {
	vec y(A.size());
	for (int i = 0; i < A.size(); ++i)
		for (int j = 0; j < A[0].size(); ++j)
			y[i] = add(y[i], mul(A[i][j],x[j]));
	return y;
}
// O( n^3 )
mat mul(const mat &A, const mat &B) {
	mat C(A.size(), vec(B[0].size()));
	for (int i = 0; i < C.size(); ++i)
		for (int j = 0; j < C[i].size(); ++j)
			for (int k = 0; k < A[i].size(); ++k)
				C[i][j] = add(C[i][j],mul(A[i][k],B[k][j]));
	return C;
}
// O( n^3 log e )
mat pow(const mat &A, long long e) {
	return e == 0 ? identity(A.size())  :
		e % 2 == 0 ? pow(mul(A, A), e/2) : mul(A, pow(A, e-1));
}
//}}}

//{{{ gauss
int gauss(mat &A, vec &b) {
//int gauss(mat& A) {//returns rank
	const int n=A.size(),m=A[0].size();
	int pi=0;
	for(int pj=0;pj<m;pj++){
		for(int i = pi+1; i < n; i++) {
			if (abs(A[i][pj]) > abs(A[pi][pj])) {
				swap(A[i], A[pi]);
				swap(b[i], b[pi]);
			}
		}
		if (abs(A[pi][pj]) > 0) {
			nm d = inverse(A[pi][pj]);
			REP(j, m)
				A[pi][j] = mul(A[pi][j],d);
			b[pi] = mul(b[pi],d);
			REP(i,n){
				if(i==pi)continue;
				nm k = A[i][pj];
				REP(j, m)
					A[i][j] = add(A[i][j],opposite(mul(k, A[pi][j])));
				b[i] = add(b[i],opposite(mul(k, b[pi])));
			}
			pi++;
		}
	}
	return pi;
	/*
		for(int i = pi; i < n; i++)
		if (abs(b[i]) > 0)
		throw Inconsistent();
		if (pi < m || pj < m)
		throw Ambiguous();
		for(int j = m-1; j >= 0; j--)
		REP(i, j)
		b[i] = modulo(b[i] - b[j] * A[i][j]);
	 */
}
//}}}

int x[55555],y[55555];

int main(){
//	printf("%.0Lf",12.34L);
	int M;
	scanf("%d",&M);
	REP(i,M){
		scanf("%d%d",x+i,y+i);
	}

	const int T = 3;
	mat A(6,vec(6));
	vec b(6);
	REP(i,T){
		int x = rand()%20000-10000;
		int y = rand()%20000-10000;
		printf("? %d %d\n",x,y);
		fflush(stdout);
		long long a0,b0;
		scanf("%lld%lld",&a0,&b0);
		A[i*2][0] = (rn)x;
		A[i*2][1] = (rn)y;
		A[i*2][2] = 1.0L;
		A[i*2+1][3] = (rn)x;
		A[i*2+1][4] = (rn)y;
		A[i*2+1][5] = 1.0L;
		b[i*2] = (rn)a0;
		b[i*2+1] = (rn)b0;
	}
	gauss(A,b);
	printf("!\n");
	REP(i,M){
		printf("%.0Lf %.0Lf\n",b[0]*x[i]+b[1]*y[i]+b[2],b[3]*x[i]+b[4]*y[i]+b[5]);
	}
	fflush(stdout);
	return 0;
}
0