Submission #1099741


Source Code Expand

#include <algorithm>
#include <cassert>
#include <cfloat>
#include <climits>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <deque>
#include <iomanip>
#include <iostream>
#include <limits>
#include <map>
#include <queue>
#include <set>
#include <sstream>
#include <stack>
#include <string>
#include <tuple>
#include <vector>

#define FOR(i,k,n) for (int (i)=(k); (i)<(n); ++(i))
#define rep(i,n) FOR(i,0,n)
#define pb push_back
#define all(v) begin(v), end(v)
#define debug(x) cerr<< #x <<": "<<x<<endl
#define debug2(x,y) cerr<< #x <<": "<< x <<", "<< #y <<": "<< y <<endl

using namespace std;
typedef long long ll;
typedef unsigned long long ull;
typedef pair<int, int> pii;
typedef vector<int> vi;
typedef vector<vector<int> > vvi;
typedef vector<ll> vll;
typedef vector<vector<ll> > vvll;
template<class T> using vv=vector<vector< T > >;

int main() {
  int n, m;
  scanf("%d %d", &n, &m);
  vvi b(n, vi(m));
  rep (i, n) {
    char tmp;
    rep (j, m) {
      scanf(" %c", &tmp);
      b[i][j] = tmp - '0';
    }
  }
  vvi a(n, vi(m, 0));
  rep (i, n-2) {
    rep (j, m) {
      int append = b[i][j];
      if (append == 0) {
        continue;
      }
      a[i+1][j] += append;
      b[i][j] -= append;
      b[i+1][j-1] -= append;
      b[i+1][j+1] -= append;
      b[i+2][j] -= append;
    }
  }
  rep (i, n) {
    rep (j, m) {
      printf("%d", a[i][j]);
    }
    printf("\n");
  }

  return 0;
}

Submission Info

Submission Time
Task B - アメーバ
User tspcx
Language C++14 (Clang++ 3.4)
Score 100
Code Size 1496 Byte
Status AC
Exec Time 53 ms
Memory 2796 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 100 / 100
Status
AC × 3
AC × 27
Set Name Test Cases
Sample sample_01.txt, sample_02.txt, sample_03.txt
All sample_01.txt, sample_02.txt, sample_03.txt, subtask1_01.txt, subtask1_02.txt, subtask1_03.txt, subtask1_04.txt, subtask1_05.txt, subtask1_06.txt, subtask1_07.txt, subtask1_08.txt, subtask1_09.txt, subtask1_10.txt, subtask1_11.txt, subtask1_12.txt, subtask1_13.txt, subtask1_14.txt, subtask1_15.txt, subtask1_16.txt, subtask1_17.txt, subtask1_18.txt, subtask1_19.txt, subtask1_20.txt, subtask1_21.txt, subtask1_22.txt, subtask1_23.txt, subtask1_24.txt
Case Name Status Exec Time Memory
sample_01.txt AC 19 ms 924 KB
sample_02.txt AC 17 ms 800 KB
sample_03.txt AC 19 ms 840 KB
subtask1_01.txt AC 17 ms 800 KB
subtask1_02.txt AC 17 ms 796 KB
subtask1_03.txt AC 53 ms 2720 KB
subtask1_04.txt AC 53 ms 2784 KB
subtask1_05.txt AC 53 ms 2720 KB
subtask1_06.txt AC 51 ms 2720 KB
subtask1_07.txt AC 52 ms 2796 KB
subtask1_08.txt AC 52 ms 2668 KB
subtask1_09.txt AC 52 ms 2668 KB
subtask1_10.txt AC 21 ms 1056 KB
subtask1_11.txt AC 19 ms 928 KB
subtask1_12.txt AC 36 ms 1828 KB
subtask1_13.txt AC 28 ms 1308 KB
subtask1_14.txt AC 29 ms 1436 KB
subtask1_15.txt AC 37 ms 1824 KB
subtask1_16.txt AC 28 ms 1248 KB
subtask1_17.txt AC 25 ms 1180 KB
subtask1_18.txt AC 19 ms 916 KB
subtask1_19.txt AC 20 ms 928 KB
subtask1_20.txt AC 18 ms 796 KB
subtask1_21.txt AC 28 ms 1436 KB
subtask1_22.txt AC 22 ms 1176 KB
subtask1_23.txt AC 33 ms 1696 KB
subtask1_24.txt AC 32 ms 1436 KB