結果

問題 No.471 直列回転機
ユーザー koyumeishikoyumeishi
提出日時 2016-12-07 18:32:24
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 565 ms / 3,141 ms
コード長 1,440 bytes
コンパイル時間 1,395 ms
コンパイル使用メモリ 111,052 KB
実行使用メモリ 25,604 KB
平均クエリ数 19589.39
最終ジャッジ日時 2024-06-11 10:13:03
合計ジャッジ時間 18,198 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
25,220 KB
testcase_01 AC 22 ms
25,196 KB
testcase_02 AC 20 ms
25,184 KB
testcase_03 AC 21 ms
24,812 KB
testcase_04 AC 24 ms
25,068 KB
testcase_05 AC 29 ms
24,812 KB
testcase_06 AC 23 ms
24,812 KB
testcase_07 AC 28 ms
24,812 KB
testcase_08 AC 76 ms
25,452 KB
testcase_09 AC 79 ms
25,196 KB
testcase_10 AC 47 ms
24,812 KB
testcase_11 AC 215 ms
25,196 KB
testcase_12 AC 417 ms
25,220 KB
testcase_13 AC 460 ms
25,604 KB
testcase_14 AC 485 ms
25,220 KB
testcase_15 AC 565 ms
25,220 KB
testcase_16 AC 22 ms
25,208 KB
testcase_17 AC 21 ms
24,556 KB
testcase_18 AC 22 ms
24,556 KB
testcase_19 AC 20 ms
24,812 KB
testcase_20 AC 515 ms
25,196 KB
testcase_21 AC 95 ms
24,824 KB
testcase_22 AC 443 ms
24,824 KB
testcase_23 AC 454 ms
24,952 KB
testcase_24 AC 244 ms
25,208 KB
testcase_25 AC 84 ms
25,464 KB
testcase_26 AC 517 ms
25,208 KB
testcase_27 AC 241 ms
25,208 KB
testcase_28 AC 287 ms
25,464 KB
testcase_29 AC 327 ms
24,812 KB
testcase_30 AC 127 ms
25,208 KB
testcase_31 AC 498 ms
25,592 KB
testcase_32 AC 430 ms
24,824 KB
testcase_33 AC 338 ms
25,080 KB
testcase_34 AC 517 ms
24,568 KB
testcase_35 AC 119 ms
24,568 KB
testcase_36 AC 201 ms
25,080 KB
testcase_37 AC 50 ms
24,568 KB
testcase_38 AC 85 ms
25,208 KB
testcase_39 AC 159 ms
25,208 KB
testcase_40 AC 352 ms
24,824 KB
testcase_41 AC 534 ms
25,080 KB
testcase_42 AC 356 ms
24,568 KB
testcase_43 AC 453 ms
24,952 KB
testcase_44 AC 57 ms
25,208 KB
testcase_45 AC 314 ms
25,208 KB
testcase_46 AC 357 ms
25,448 KB
testcase_47 AC 465 ms
25,208 KB
testcase_48 AC 413 ms
25,208 KB
testcase_49 AC 387 ms
24,824 KB
testcase_50 AC 474 ms
25,208 KB
testcase_51 AC 201 ms
24,824 KB
testcase_52 AC 29 ms
25,196 KB
testcase_53 AC 28 ms
25,184 KB
testcase_54 AC 29 ms
25,196 KB
testcase_55 AC 125 ms
25,196 KB
testcase_56 AC 97 ms
24,812 KB
testcase_57 AC 68 ms
25,196 KB
testcase_58 AC 48 ms
25,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <complex>
#include <iostream>
#include <fstream>
#include <vector>
#include <algorithm>
#include <string>
#include <queue>
#include <map>
#include <cstdlib>
#include <cmath>
#include <climits>
#include <functional>
#include <random>
#include <ctime>
#include "assert.h"

using namespace std;

//[n*p] * [p*m] => [n*m]
template<class T>
vector< vector<T> > multmat(const vector<vector<T> > &A, const vector<vector<T>> &B, int n, int p, int m){
  vector<vector<T> > C(n, vector<T>(m,0));
  for(int i=0; i<n; i++){
    for(int k=0; k<p; k++){
      for(int j=0; j<m; j++){
        C[i][j] += A[i][k] * B[k][j];
        //C[i][j] %= mod;
      }
    }
  }
  return C;
}

int main(int argc, char* argv[]){
	int m;
	cin >> m;
	vector<long long> px(m), py(m);
	for(int i=0; i<m; i++){
		cin >> px[i] >> py[i];
	}

  cout << "? " << 0 << " " << 0 << endl;
  long long dx,dy;
  cin >> dx >> dy;

  cout << "? " << 1 << " " << 0 << endl;
  vector<long long> r(4);
  cin >> r[0] >> r[2];
  r[0] -= dx;
  r[2] -= dy;

  cout << "? " << 0 << " " << 1 << endl;
  cin >> r[1] >> r[3];
  r[1] -= dx;
  r[3] -= dy;

  vector<vector<long long>> A = {
    {r[0],r[1],dx},
    {r[2],r[3],dy},
    {0,0,1}
  };

  cout << "!" << endl;
  for(int i=0; i<m; i++){
    vector<vector<long long>> v = {
      {px[i]},
      {py[i]},
      {1}
    };

    auto ans = multmat(A, v, 3,3,1);
    cout << ans[0][0] << " " << ans[1][0] << endl;
  }



	return 0;
}
0