結果

問題 No.471 直列回転機
ユーザー tnakao0123tnakao0123
提出日時 2016-12-21 15:19:21
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 304 ms / 3,141 ms
コード長 1,279 bytes
コンパイル時間 808 ms
コンパイル使用メモリ 83,160 KB
実行使用メモリ 25,808 KB
平均クエリ数 19589.39
最終ジャッジ日時 2024-06-11 10:29:28
合計ジャッジ時間 11,697 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 21 ms
24,836 KB
testcase_01 AC 20 ms
24,812 KB
testcase_02 AC 20 ms
24,808 KB
testcase_03 AC 19 ms
24,940 KB
testcase_04 AC 18 ms
25,196 KB
testcase_05 AC 19 ms
25,184 KB
testcase_06 AC 20 ms
25,184 KB
testcase_07 AC 19 ms
25,196 KB
testcase_08 AC 33 ms
25,196 KB
testcase_09 AC 45 ms
24,812 KB
testcase_10 AC 28 ms
25,580 KB
testcase_11 AC 127 ms
25,196 KB
testcase_12 AC 230 ms
25,220 KB
testcase_13 AC 253 ms
25,220 KB
testcase_14 AC 269 ms
24,964 KB
testcase_15 AC 304 ms
24,836 KB
testcase_16 AC 22 ms
24,952 KB
testcase_17 AC 19 ms
25,196 KB
testcase_18 AC 20 ms
24,812 KB
testcase_19 AC 18 ms
24,812 KB
testcase_20 AC 281 ms
24,824 KB
testcase_21 AC 79 ms
25,208 KB
testcase_22 AC 252 ms
25,208 KB
testcase_23 AC 225 ms
25,148 KB
testcase_24 AC 144 ms
24,952 KB
testcase_25 AC 63 ms
25,208 KB
testcase_26 AC 282 ms
25,208 KB
testcase_27 AC 136 ms
24,940 KB
testcase_28 AC 163 ms
24,824 KB
testcase_29 AC 190 ms
24,824 KB
testcase_30 AC 90 ms
24,824 KB
testcase_31 AC 275 ms
25,208 KB
testcase_32 AC 237 ms
24,952 KB
testcase_33 AC 180 ms
25,592 KB
testcase_34 AC 275 ms
25,208 KB
testcase_35 AC 74 ms
25,208 KB
testcase_36 AC 118 ms
25,196 KB
testcase_37 AC 46 ms
25,208 KB
testcase_38 AC 67 ms
24,824 KB
testcase_39 AC 110 ms
24,824 KB
testcase_40 AC 201 ms
25,208 KB
testcase_41 AC 266 ms
24,568 KB
testcase_42 AC 181 ms
25,208 KB
testcase_43 AC 254 ms
24,824 KB
testcase_44 AC 49 ms
25,208 KB
testcase_45 AC 165 ms
24,568 KB
testcase_46 AC 200 ms
24,824 KB
testcase_47 AC 242 ms
24,952 KB
testcase_48 AC 223 ms
25,208 KB
testcase_49 AC 209 ms
24,824 KB
testcase_50 AC 241 ms
25,208 KB
testcase_51 AC 109 ms
25,448 KB
testcase_52 AC 23 ms
24,940 KB
testcase_53 AC 22 ms
25,196 KB
testcase_54 AC 23 ms
25,808 KB
testcase_55 AC 85 ms
25,196 KB
testcase_56 AC 69 ms
25,196 KB
testcase_57 AC 52 ms
24,812 KB
testcase_58 AC 31 ms
24,428 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘void ask(int, int, int&, int&)’:
main.cpp:41:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   41 |   scanf("%d%d", &xd, &yd);
      |   ~~~~~^~~~~~~~~~~~~~~~~~
main.cpp: In function ‘int main()’:
main.cpp:48:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   48 |   scanf("%d", &m);
      |   ~~~~~^~~~~~~~~~
main.cpp:49:36: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   49 |   for (int i = 0; i < m; i++) scanf("%d%d", xs + i, ys + i);
      |                               ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 471.cc: No.471 直列回転機 - yukicoder
 */

#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<cmath>
#include<iostream>
#include<string>
#include<vector>
#include<map>
#include<set>
#include<stack>
#include<list>
#include<queue>
#include<deque>
#include<algorithm>
#include<numeric>
#include<utility>
#include<complex>
#include<functional>
 
using namespace std;

/* constant */

const int MAX_M = 50000;

/* typedef */

/* global variables */

int xs[MAX_M], ys[MAX_M];

/* subroutines */

void ask(int x, int y, int &xd, int &yd) {
  printf("? %d %d\n", x, y); fflush(stdout);
  scanf("%d%d", &xd, &yd);
}

/* main */

int main() {
  int m;
  scanf("%d", &m);
  for (int i = 0; i < m; i++) scanf("%d%d", xs + i, ys + i);

  // x' = ax + by + c
  // y' = dx + ey + f
  int a, b, c, d, e, f;

  // (0, 0) -> (c, f)
  ask(0, 0, c, f);

  // (1, 0) -> (a + c, d + f)
  int ac, df;
  ask(1, 0, ac, df);
  a = ac - c;
  d = df - f;

  // (0, 1) -> (b + c, e + f);
  int bc, ef;
  ask(0, 1, bc, ef);
  b = bc - c;
  e = ef - f;

  putchar('!'); putchar('\n');
  for (int i = 0; i < m; i++) {
    int x = a * xs[i] + b * ys[i] + c;
    int y = d * xs[i] + e * ys[i] + f;
    printf("%d %d\n", x, y);
  }
  fflush(stdout);

  return 0;
}

0