結果
問題 | No.3015 アンチローリングハッシュ |
ユーザー | koyumeishi |
提出日時 | 2015-06-29 01:24:09 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 704 bytes |
コンパイル時間 | 408 ms |
コンパイル使用メモリ | 61,936 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-07-07 21:06:33 |
合計ジャッジ時間 | 4,194 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
10,624 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 10 ms
5,376 KB |
testcase_07 | AC | 150 ms
5,376 KB |
testcase_08 | TLE | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
ソースコード
#include <iostream> #include <string> #include "assert.h" #include <fstream> #include <vector> #include <ctime> #include <cstdlib> using namespace std; unsigned long long get_hash(string s, int a, int b){ unsigned long long hash = 0; for(int i=0; i<s.size(); i++){ hash = (hash * a + s[i])%b; } return hash; } int main(){ int a,b; cin >> a >> b; srand((unsigned)time(NULL)); string s(2*b, 'a'); for(int i=0; i<s.size(); i++){ s[i] = 'a' + rand()%26; } unsigned long long hash_s = get_hash(s,a,b); string t(2*b, 'a'); while(get_hash(t,a,b) != hash_s){ for(int k=0; k<3; k++){ t[rand()%t.size()] = 'a' + rand()%26; } } cout << s << endl; cout << t << endl; return 0; }