結果

問題 No.440 2次元チワワ問題
ユーザー Lepton_sLepton_s
提出日時 2016-10-28 23:48:42
言語 C++11
(gcc 11.4.0)
結果
MLE  
実行時間 -
コード長 1,881 bytes
コンパイル時間 707 ms
コンパイル使用メモリ 86,128 KB
実行使用メモリ 818,048 KB
最終ジャッジ日時 2024-05-03 08:18:42
合計ジャッジ時間 4,462 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 9 ms
13,056 KB
testcase_05 AC 5 ms
8,192 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 139 ms
203,008 KB
testcase_08 MLE -
testcase_09 MLE -
testcase_10 MLE -
testcase_11 AC 79 ms
65,280 KB
testcase_12 MLE -
testcase_13 MLE -
testcase_14 AC 12 ms
10,112 KB
testcase_15 MLE -
testcase_16 AC 22 ms
5,376 KB
testcase_17 MLE -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <climits>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <ctime>
#include <iostream>
#include <sstream>
#include <functional>
#include <map>
#include <string>
#include <cstring>
#include <vector>
#include <queue>
#include <stack>
#include <deque>
#include <set>
#include <list>
#include <numeric>
using namespace std;
const double PI = 3.14159265358979323846;
const double EPS = 1e-12;
const int INF = 1<<25;
typedef pair<int,int> P;
typedef long long ll;
typedef unsigned long long ull;

#define N 502
#define Q 10000
ll h, w;
vector<string> s(N), s2(N);
ll a[Q], b[Q], c[Q], d[Q];
ll q;
ll res[Q];
ll dp[N][N][N];

void rot(){
	for(int i = 0; i < q; i++){
		int t;
		t = h-a[i]-1;
		a[i] = b[i];
		b[i] = t;
		t = h-c[i]-1;
		c[i] = d[i];
		d[i] = t;
		swap(b[i], d[i]);
	}
	for(int i = 0; i < N; i++) s2[i] = "";
	for(int i = h-1; i >= 0; i--)
		for(int j = 0; j < w; j++)
			s2[j] += s[i][j];
	swap(s, s2);
	swap(h, w);
}

void solve(){
	//memset(dp, 0, sizeof(dp));
	for(int i = 0; i < h; i++){
		for(int j = 0; j < w; j++){
			dp[i][j][j] = 0;
			int nc = 0, nw = 0;
			for(int k = j; k < w; k++){
				if(s[i][k]=='c'){
					dp[i][j][k+1] = dp[i][j][k];
					nc++;
				} else {
					dp[i][j][k+1] = dp[i][j][k]+nw;
					nw += nc;
				}
			}
		}
	}
	for(int l = 0; l < q; l++){
		for(int i = a[l]; i <= c[l]; i++){
			res[l] += dp[i][b[l]][d[l]+1];
		}
	}
}

int main(){
	cin>>h>>w;
	for(int i = 0; i < h; i++) cin>>s[i];
	cin>>q;
	for(int i = 0; i < q; i++){
		cin>>a[i]>>b[i]>>c[i]>>d[i];
		a[i]--; b[i]--; c[i]--; d[i]--;
	}
	for(int i = 0; i < 4; i++){
		/*cerr<<h<<" "<<w<<endl;
		for(int j = 0; j < h; j++){
			cerr<<s[j]<<endl;
		}
		cerr<<q<<endl;
		for(int j = 0; j < q; j++){
			cerr<<a[j]<<" "<<b[j]<<" "<<c[j]<<" "<<d[j]<<endl;
		}*/
		rot();
		solve();
	}
	for(int i = 0; i < q; i++) cout<<res[i]<<endl;
	return 0;
}
0