結果

問題 No.1479 Matrix Eraser
ユーザー monnumonnu
提出日時 2021-04-16 21:06:38
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,113 bytes
コンパイル時間 1,809 ms
コンパイル使用メモリ 177,140 KB
実行使用メモリ 6,400 KB
最終ジャッジ日時 2024-07-03 00:05:58
合計ジャッジ時間 11,670 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 30 ms
5,376 KB
testcase_08 AC 61 ms
5,376 KB
testcase_09 AC 157 ms
5,376 KB
testcase_10 AC 386 ms
5,760 KB
testcase_11 AC 209 ms
5,376 KB
testcase_12 AC 54 ms
5,376 KB
testcase_13 AC 59 ms
5,376 KB
testcase_14 AC 54 ms
5,376 KB
testcase_15 AC 10 ms
5,376 KB
testcase_16 AC 51 ms
5,376 KB
testcase_17 AC 514 ms
6,400 KB
testcase_18 AC 520 ms
6,144 KB
testcase_19 AC 523 ms
6,144 KB
testcase_20 AC 524 ms
6,144 KB
testcase_21 AC 517 ms
6,400 KB
testcase_22 AC 515 ms
6,272 KB
testcase_23 AC 525 ms
6,272 KB
testcase_24 AC 520 ms
6,272 KB
testcase_25 AC 511 ms
6,272 KB
testcase_26 AC 521 ms
6,272 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 46 ms
6,272 KB
testcase_38 AC 507 ms
6,272 KB
testcase_39 AC 515 ms
6,272 KB
testcase_40 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
//#include <atcoder/all>
//using namespace atcoder;
using ll=long long;
using Graph=vector<vector<int>>;
#define MAX 200003
#define MOD 998244353
#define INF 1000000000

int main(){
  int H,W;
  cin>>H>>W;
  vector<vector<int>> A(H,vector<int>(W));
  vector<pair<int,int>> a(H*W);
  for(int i=0;i<H;i++){
    for(int j=0;j<W;j++){
      cin>>A[i][j];
      a[i*W+j]=make_pair(A[i][j],i*W+j);
    }
  }
  sort(a.begin(),a.end());
  reverse(a.begin(),a.end());

  int ans=0;
  for(int cnt=0;cnt<H*W;cnt++){
    int x=a[cnt].first;
    int i=a[cnt].second/W;
    int j=a[cnt].second%W;
    if(A[i][j]==0){
      continue;
    }
    ans++;
    int cnt1=0;
    int cnt2=0;
    for(int k=0;k<H;k++){
      if(A[k][j]==x){
        cnt1++;
      }
    }
    for(int k=0;k<W;k++){
      if(A[i][k]==x){
        cnt2++;
      }
    }
    if(cnt1>cnt2){
      for(int k=0;k<H;k++){
        if(A[k][j]==x){
          A[k][j]=0;
        }
      }
    }else{
      for(int k=0;k<W;k++){
        if(A[i][k]==x){
          A[i][k]=0;
        }
      }
    }
  }
  cout<<ans<<endl;
}
0