結果

問題 No.1647 Travel in Mitaru city 2
ユーザー 👑 NachiaNachia
提出日時 2021-08-13 22:46:47
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,438 bytes
コンパイル時間 817 ms
コンパイル使用メモリ 86,672 KB
実行使用メモリ 13,440 KB
最終ジャッジ日時 2024-10-03 21:08:05
合計ジャッジ時間 10,541 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
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 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 AC 2 ms
6,816 KB
testcase_44 AC 5 ms
7,808 KB
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <atcoder/modint>
#include <atcoder/fenwicktree>
using namespace std;
using i64 = int64_t;
using u64 = uint64_t;
#define rep(i,n) for(int i=0; i<(n); i++)


int H,W,N;

vector<int> solve(vector<pair<int,int>> P){
  vector<int> ans;
  vector<vector<int>> E(W);
  vector<vector<int>> D(H);
  rep(i,N){
    auto p = P[i];
    E[p.second].push_back(i);
    D[p.first].push_back(i);
  }
  rep(x,H){
    vector<int> YI;
    for(auto i : D[x]){
      int y = P[i].second;
      if(E[y].size() >= 2) YI.push_back(i);
    }
    if(YI.size() < 2) continue;
    ans.resize(4);
    ans[1] = YI[0];
    ans[2] = YI[1];
    for(int e : E[P[YI[0]].second]) if(e != YI[0]) ans[0] = e;
    for(int e : E[P[YI[1]].second]) if(e != YI[1]) ans[3] = e;
    return ans;
  }
  return ans;
}

int main() {
  cin >> H >> W >> N;
  vector<pair<int,int>> P(N);
  rep(i,N){
    int y,x; cin >> y >> x; y--; x--;
    P[i] = {y,x};
  }
  vector<int> ans;
  //rep(t,2){
    //rep(i,N) swap(P[i].first,P[i].second);
    //swap(H,W);
    ans = solve(P);
    //if(!ans.empty()) break;
  //}
  if(ans.empty()){
    cout << "-1\n";
  }
  else{
    cout << "4\n";
    rep(i,4){
      if(i) cout << " ";
      cout << (ans[i]+1);
    }
    cout << "\n";
  }
  return 0;
}


struct ios_do_not_sync{
  ios_do_not_sync(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
  }
} ios_do_not_sync_instance;


0