結果

提出番号 1627
提出者 haji
言語 C++
提出日時 2018-08-04 13:18:10
問題名 (69)机の配置
結果 AC
点数 100%

テストケース

テストケース 結果 得点 実行時間 メモリ使用量
1 AC 100% 2ms 8416KB
2 AC 100% 2ms 7536KB
3 AC 100% 2ms 7984KB
4 AC 100% 2ms 8416KB
5 AC 100% 2ms 7840KB
6 AC 100% 3ms 7792KB
7 AC 100% 2ms 8432KB
8 AC 100% 2ms 8672KB
9 AC 100% 2ms 8048KB
10 AC 100% 2ms 8432KB
11 AC 100% 2ms 7792KB
12 AC 100% 2ms 8064KB
13 AC 100% 2ms 8416KB
14 AC 100% 1ms 8080KB
15 AC 100% 2ms 8448KB
16 AC 100% 2ms 8432KB
17 AC 100% 2ms 8432KB
18 AC 100% 2ms 7520KB
19 AC 100% 2ms 7792KB
20 AC 100% 2ms 8448KB
21 AC 100% 2ms 8368KB
22 AC 100% 2ms 7824KB
23 AC 100% 2ms 7824KB
24 AC 100% 1ms 7808KB
25 AC 100% 2ms 7968KB
26 AC 100% 2ms 8432KB
27 AC 100% 2ms 8336KB
28 AC 100% 2ms 7872KB
29 AC 100% 2ms 7952KB
30 AC 100% 2ms 8448KB

ソースコード

#include <bits/stdc++.h>
#define GET_MACRO(_1,_2,_3,_4,_5,_6,_7,_8,NAME,...) NAME
#define pr(...) cerr<< GET_MACRO(__VA_ARGS__,pr8,pr7,pr6,pr5,pr4,pr3,pr2,pr1)(__VA_ARGS__) <<endl
#define pr1(a) (#a)<<"="<<(a)<<" "
#define pr2(a,b) pr1(a)<<pr1(b)
#define pr3(a,b,c) pr1(a)<<pr2(b,c)
#define pr4(a,b,c,d) pr1(a)<<pr3(b,c,d)
#define pr5(a,b,c,d,e) pr1(a)<<pr4(b,c,d,e)
#define pr6(a,b,c,d,e,f) pr1(a)<<pr5(b,c,d,e,f)
#define pr7(a,b,c,d,e,f,g) pr1(a)<<pr6(b,c,d,e,f,g)
#define pr8(a,b,c,d,e,f,g,h) pr1(a)<<pr7(b,c,d,e,f,g,h)
using namespace std;
using Int = long long;
using _int = int;
using ll = long long;
using Double = long double;
const Int INF = (1LL<<55)+1e9; // ~ 3.6 * 1e16
const Int mod = (1e9)+7;
const Double EPS = 1e-8;
const Double PI = 6.0 * asin((Double)0.5);
using P = pair<Int,Int>;
using T = tuple<Int,Int,Int>;
template<class T> T Max(T &a,T b){return a=max(a,b);}
template<class T> T Min(T &a,T b){return a=min(a,b);}
ostream& operator<<(ostream& o,P p){return o<<"("<<p.first<<","<<p.second<<")";}
ostream& operator<<(ostream& o,T t){return o<<"("<<get<0>(t)<<","<<get<1>(t)<<","<<get<2>(t)<<")";}
istream& operator>>(istream& i,P &p){return i>>p.first>>p.second;}
template<class T> ostream& operator<<(ostream& o,vector<T> &a){Int i=0;for(auto t:a)o<<(i++?" ":"")<<t;return o;}
template<class T> istream& operator>>(istream& i,vector<T> &a){for(auto &t:a)i>>t;return i;}
template<class T> void prArr(T a,string s=" "){Int i=0;for(auto t:a)cout<<(i++?s:"")<<t;cout<<endl;}


int check(vector<string> mp, int len){
  int h = mp.size();
  int w = mp[0].size();

  auto canPut=[&](int y,int x){
    if(x + len > w) return false;
    for(int i = x; i < x + len;i++) if(mp[y][i] != '.') return false;
    return true;
  };

  auto put = [&](int y,int x){
    if(!canPut(y, x)) return 0;
    for(int i = x; i < x + len;i++) mp[y][i] = '@';
    return 1;
  };

  int res = 0;
  for(int i=0;i<h;i++)
    for(int j=0;j<w;j++){
      res += put(i, j);
    }
  return res;
}

signed main(){
  srand((unsigned)time(NULL));
  cin.tie(0);
  ios_base::sync_with_stdio(0);
  cout << fixed << setprecision(12);

  int n, h, w;
  cin>>n>>h>>w;

  vector<string> mp(h);
  cin>>mp;

  for(int i=1;i<=n;i++){
    int ans = check(mp, i);
    cout<<ans<<endl;
  }

  return 0;
}