-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy path127.Word_Ladder.cpp
124 lines (113 loc) · 3.13 KB
/
127.Word_Ladder.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
/*
written by Pankaj Kumar.
country:-INDIA
Institute: National Institute of Technology, Uttarakhand
*/
typedef long long ll ;
typedef vector<int> vl;
typedef vector<vector<int>> vvl;
#define speed cin.tie(0);cout.tie(0);ios_base::sync_with_stdio(0);
/* Abbrevations */
#define ff first
#define ss second
#define mp make_pair
#define pb push_back
// loops
#define forin(arr,n) for(ll i=0;i<n;i++) cin>>arr[i];
// Some print
#define no cout<<"NO"<<endl;
#define yes cout<<"YES"<<endl;
// sort
#define all(V) (V).begin(),(V).end()
#define srt(V) sort(all(V))
#define srtGreat(V) sort(all(V),greater<ll>())
// some extra
#define printv(v) for(ll i=0;i<ll(v.size());i++){cout<<v[i]<<" ";} cout<<endl;
#define precision(x) cout<<fixed<<setprecision(x);
#define sz(V) ll(V.size())
/* ascii value
A=65,Z=90,a=97,z=122
*/
/* Some syntax
//Syntax to create a min heap for priority queue
//priority_queue <int, vector<int>, greater<int>>pq;
*/
ll ppow(ll n, ll m, ll mod){
if(m==0) return 1;
ll tmp=ppow(n, m/2, mod);
tmp=tmp*tmp%mod;
return m%2 ? tmp*n%mod: tmp;
}
namespace mod_operations{
ll modInv(ll n, ll mod){
return ppow(n,mod-2, mod);
}
ll modAdd(ll n, ll m, ll mod){
n=(n%mod+mod)%mod; m=(m%mod+mod)%mod;
return (n+m)%mod;
}
ll modMul(ll n, ll m, ll mod){
n=(n%mod+mod)%mod; m=(m%mod+mod)%mod;
return n*m %mod;
}
ll modSub(ll n, ll m, ll mod){
n=(n%mod+mod)%mod; m=(m%mod+mod)%mod;
return modAdd(n,-m, mod);
}
ll modDiv(ll n, ll m, ll mod){
return modMul(n, modInv(m, mod), mod);
}
}
using namespace mod_operations;
/* --------------------MAIN PROGRAM----------------------------*/
// to run ctrl+b
const ll INF=1e18;
const ll mod1=1e9+7;
const ll mod2=998244353;
// Techniques :
// divide into cases, brute force, pattern finding
// sort, greedy, binary search, two pointer
// transform into graph
// Experience :
// Cp is nothing but only observation and mathematics.
//Add main code here
class Solution {
public:
int ladderLength(string beginWord, string endWord, vector<string>& wordList) {
unordered_map<string,int> m;
unordered_map<string,int> m2;
for(auto x:wordList){
m2[x]=1;
}
queue<pair<string,int>> q;
m[beginWord]=1;
q.push({beginWord,1});
while(!q.empty()){
string source=q.front().ff;
int value=q.front().ss;
q.pop();
if(source==endWord){
return value;
}
for(int i=0;i<sz(source);i++){
string temp=source;
for(int j=0;j<26;j++){
temp[i]='a'+j;
if(m2[temp]&&m[temp]==0){
m[temp]=value+1;
q.push({temp,value+1});
}
}
}
}
return m[endWord];
}
};
/* -----------------END OF PROGRAM --------------------*/
/*
* stuff you should look before submission
* constraint and time limit
* int overflow
* special test case (n=0||n=1||n=2)
* don't get stuck on one approach if you get wrong answer
*/