結果
問題 | No.440 2次元チワワ問題 |
ユーザー | paruki |
提出日時 | 2016-11-03 22:10:58 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 665 ms / 5,000 ms |
コード長 | 2,219 bytes |
コンパイル時間 | 1,721 ms |
コンパイル使用メモリ | 185,648 KB |
実行使用メモリ | 12,288 KB |
最終ジャッジ日時 | 2024-11-25 02:27:52 |
合計ジャッジ時間 | 6,515 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 4 ms
11,644 KB |
testcase_01 | AC | 4 ms
11,608 KB |
testcase_02 | AC | 6 ms
11,352 KB |
testcase_03 | AC | 5 ms
11,460 KB |
testcase_04 | AC | 5 ms
11,324 KB |
testcase_05 | AC | 6 ms
11,536 KB |
testcase_06 | AC | 5 ms
11,420 KB |
testcase_07 | AC | 9 ms
11,640 KB |
testcase_08 | AC | 18 ms
11,940 KB |
testcase_09 | AC | 53 ms
12,028 KB |
testcase_10 | AC | 10 ms
11,712 KB |
testcase_11 | AC | 13 ms
11,696 KB |
testcase_12 | AC | 13 ms
11,828 KB |
testcase_13 | AC | 52 ms
11,928 KB |
testcase_14 | AC | 6 ms
11,532 KB |
testcase_15 | AC | 50 ms
12,148 KB |
testcase_16 | AC | 8 ms
11,772 KB |
testcase_17 | AC | 91 ms
12,288 KB |
testcase_18 | AC | 90 ms
12,196 KB |
testcase_19 | AC | 91 ms
12,080 KB |
testcase_20 | AC | 92 ms
12,216 KB |
testcase_21 | AC | 664 ms
12,240 KB |
testcase_22 | AC | 665 ms
12,120 KB |
testcase_23 | AC | 654 ms
12,228 KB |
testcase_24 | AC | 654 ms
12,136 KB |
testcase_25 | AC | 662 ms
12,244 KB |
ソースコード
#include "bits/stdc++.h"using namespace std;#define FOR(i,j,k) for(int (i)=(j);(i)<(int)(k);++(i))#define rep(i,j) FOR(i,0,j)#define each(x,y) for(auto &(x):(y))#define mp make_pair#define all(x) (x).begin(),(x).end()#define debug(x) cout<<#x<<": "<<(x)<<endl#define smax(x,y) (x)=max((x),(y))#define smin(x,y) (x)=min((x),(y))#define MEM(x,y) memset((x),(y),sizeof (x))#define sz(x) (int)(x).size()typedef long long ll;typedef pair<int, int> pii;typedef vector<int> vi;typedef vector<ll> vll;int H, W, Q;vector<string> S, T;typedef tuple<int, int, int, int> Query;vector<Query> q, qs[501];int sy, sx, ey, ex;ll ans[10001], c[501][501], w[501][501], cw[501][501], cww[501][501];void calc() {rep(ii, 2) {MEM(c, 0); MEM(w, 0); MEM(cw, 0); MEM(cww, 0);rep(y, H) {rep(x, W) {c[y][x + 1] = c[y][x] + (S[y][x] == 'c');w[y][x + 1] = w[y][x] + (S[y][x] == 'w');cw[y][x + 1] = cw[y][x] + (S[y][x] == 'w' ? c[y][x] : 0);cww[y][x + 1] = cww[y][x] + (S[y][x] == 'w' ? cw[y][x] : 0);}}rep(i, Q) {tie(sy, sx, ey, ex) = q[i];FOR(y, sy, ey) {ll wa = w[y][ex] - w[y][sx];ll ww = wa*(wa - 1) / 2;ans[i] += cww[y][ex] - cww[y][sx] - c[y][sx] * ww - cw[y][sx] * wa;}}rep(y, H)reverse(all(S[y]));rep(i, Q) {tie(sy, sx, ey, ex) = q[i];int t = W - sx;sx = W - ex;ex = t;q[i] = tie(sy, sx, ey, ex);}}}int main(){ios::sync_with_stdio(false);cin.tie(0);cin >> H >> W;S.resize(H);rep(y, H)cin >> S[y];cin >> Q;q.resize(Q);rep(i, Q) {cin >> sy >> sx >> ey >> ex;--sy; --sx;q[i] = make_tuple(sy, sx, ey, ex);}T = vector<string>(W, string(H, ' '));rep(y, H)rep(x, W)T[x][y] = S[y][x];calc();S = T;swap(W, H);rep(i, Q) {tie(sy, sx, ey, ex) = q[i];swap(sy, sx); swap(ey, ex);q[i] = tie(sy, sx, ey, ex);}calc();rep(i, Q)printf("%lld\n", ans[i]);}