結果
問題 | No.675 ドットちゃんたち |
ユーザー | nebukuro09 |
提出日時 | 2018-04-14 00:54:32 |
言語 | D (dmd 2.106.1) |
結果 |
AC
|
実行時間 | 135 ms / 2,000 ms |
コード長 | 1,651 bytes |
コンパイル時間 | 1,072 ms |
コンパイル使用メモリ | 121,652 KB |
実行使用メモリ | 7,012 KB |
最終ジャッジ日時 | 2024-06-13 00:26:28 |
合計ジャッジ時間 | 3,675 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,944 KB |
testcase_02 | AC | 1 ms
6,944 KB |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | AC | 1 ms
6,940 KB |
testcase_05 | AC | 116 ms
6,944 KB |
testcase_06 | AC | 130 ms
7,012 KB |
testcase_07 | AC | 116 ms
6,940 KB |
testcase_08 | AC | 124 ms
6,944 KB |
testcase_09 | AC | 130 ms
6,940 KB |
testcase_10 | AC | 135 ms
6,940 KB |
testcase_11 | AC | 131 ms
6,944 KB |
ソースコード
import std.stdio, std.array, std.string, std.conv, std.algorithm; import std.typecons, std.range, std.random, std.math, std.container; import std.numeric, std.bigint, core.bitop, std.bitmanip; void main() { alias Point = Tuple!(long, "x", long, "y"); auto s = readln.split.map!(to!long); auto N = s[0].to!int; auto S = Point(s[1], s[2]); auto Q = new Tuple!(long, long)[](N); foreach (i; 0..N) { s = readln.split.map!(to!long); long x = s[0] == 3 ? 0 : s[1]; Q[i] = tuple(s[0], x); } Point[] ans; auto M = new long[][](3, 3); foreach (i; 0..3) M[i][i] = 1; auto move = new long[][](3, 3); foreach (i; 0..3) move[i][i] = 1; auto rot = new long[][](3, 3); rot[0][1] = 1; rot[1][0] = -1; rot[2][2] = 1; foreach_reverse (q; Q) { if (q[0] == 1) { move[0][2] = q[1]; M = matmul(3, M, move); move[0][2] = 0; } else if (q[0] == 2) { move[1][2] = q[1]; M = matmul(3, M, move); move[1][2] = 0; } else { M = matmul(3, M, rot); } auto x = M[0][0] * S.x + M[0][1] * S.y + M[0][2]; auto y = M[1][0] * S.x + M[1][1] * S.y + M[1][2]; ans ~= Point(x, y); } foreach_reverse (a; ans) { writeln(a.x, " ", a.y); } } long[][] matmul(int N, long[][] m1, long[][] m2) { auto ret = new long[][](N, N); foreach (i; 0..N) { foreach (j; 0..N) { ret[i][j] = 0; foreach (k; 0..N) { ret[i][j] += m1[i][k] * m2[k][j]; } } } return ret; }