結果

問題 No.233 めぐるはめぐる (3)
ユーザー nanasilinanasili
提出日時 2015-07-31 09:36:49
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 277 ms / 1,000 ms
コード長 1,678 bytes
コンパイル時間 727 ms
コンパイル使用メモリ 90,204 KB
実行使用メモリ 9,600 KB
最終ジャッジ日時 2024-07-17 22:53:04
合計ジャッジ時間 3,831 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
9,344 KB
testcase_01 AC 36 ms
7,296 KB
testcase_02 AC 16 ms
6,940 KB
testcase_03 AC 40 ms
7,680 KB
testcase_04 AC 277 ms
9,600 KB
testcase_05 AC 123 ms
9,472 KB
testcase_06 AC 209 ms
9,600 KB
testcase_07 AC 63 ms
9,600 KB
testcase_08 AC 65 ms
9,600 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 1 ms
6,948 KB
testcase_12 AC 35 ms
7,296 KB
testcase_13 AC 63 ms
9,472 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:28:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   28 |   scanf("%d", &n);
      |   ~~~~~^~~~~~~~~~
main.cpp:35:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   35 |     scanf("%s", s);
      |     ~~~~~^~~~~~~~~

ソースコード

diff #

#include <algorithm>
#include <vector>
#include <cfloat>
#include <string>
#include <cmath>
#include <set>
#include <cstdlib>
#include <map>
#include <ctime>
#include <iomanip>
#include <functional>
#include <deque>
#include <iostream>
#include <cstring>
#include <queue>
#include <cstdio>
#include <stack>
#include <climits>
#include <sys/time.h>
#include <cctype>

using namespace std;

typedef long long ll;

int main() {
  int n;
  scanf("%d", &n);

  int memo[12] = {50965598, 138640614, 86894790, 22969011, 137866584, 12805388, 102696496, 169269628, 196679944, 213985204, 79308356};

  set <int> hash;
  for (int i = 0; i < n; i++) {
    char s[12];
    scanf("%s", s);
    int t = 0;
    for (int j = 0; j < 12; j++) {
      t += s[j]*memo[j];
    }
    hash.insert(t);
  }
  if (hash.size() >= 129599) {
    puts("NO");
    return 0;
  }

  int ind1[6], ind2[6];
  for (int i = 0; i < 6; i++) {
    ind1[i] = i;
    ind2[i] = i;
  }

  char str[12] = "inabameguru";
  do {
    do {
      char ans[12];
      int temp = 0;
      for (int i = 0; i < 6; i++) {
	temp += str[2*ind1[i]]*memo[2*i];
	ans[2*i] = str[2*ind1[i]];
      }
      for (int i = 0; i < 5; i++) {
	temp += str[2*ind2[i]+1]*memo[2*i+1];
	ans[2*i+1] = str[2*ind2[i]+1];
      }
      ans[11] = '\0';

      if (hash.find(temp) == hash.end()) {
      	puts(ans);
      	return 0;
      }
      for (int i = 0; i < 10; i++) {
	temp += ans[i]*memo[i+1]-ans[i]*memo[i];
	temp += ans[i+1]*memo[i]-ans[i+1]*memo[i+1];
	swap(ans[i], ans[i+1]);
	if (hash.find(temp) == hash.end()) {
	  puts(ans);
	  return 0;
	}
      }

    } while(next_permutation(ind2, ind2+5));
  } while(next_permutation(ind1, ind1+6));
}
0