Блог пользователя md.ashif313

Автор md.ashif313, 9 лет назад, По-английски

Google's hiring contest, APAC Kickstart 2017 Round E is going to held on Sunday, August 27, 2017 05:00 UTC – 08:00 UTC

Google

Ready to get started solving fun, challenging problems? Throughout the year, Code Jam hosts online Kickstart rounds to give students the opportunity to develop their coding skills, get acquainted with Code Jam’s competition arena, and potentially get noticed by Google recruiters, too. Participate in one—or join them all!

For more visit here.

  • Проголосовать: нравится
  • +36
  • Проголосовать: не нравится

»
9 лет назад, скрыть # |
Rev. 2  
Проголосовать: нравится -26 Проголосовать: не нравится
  • Is it rated?
  • Is dit gegradeer?
  • هل يتم تقييمه؟
  • Qiymətləndirilmişmi?
  • рэйтынг Ці з'яўляецца гэта?
  • Оценява ли се?
  • এটা রেট কি?
  • Je hodnoceno?
  • Αξιολογείται;
  • Értékelt?
  • Գնահատված է:
  • È valutato?
  • האם היא מדורגת?
  • それは評価されていますか?
  • Бағаланған ба?
  • វាត្រូវបានវាយតម្លៃ?
  • 등급이 매겨 졌습니까?
  • Is it rated?
  • ມັນຖືກຈັດອັນດັບ?
  • Ar jis vertinamas?
  • ഇത് റേറ്റുചെയ്തിട്ടുണ്ടോ?
  • Үүнийг үнэлдэг үү?
  • Adakah ia dinilai?
  • အဆင့်သတ်မှတ်ခဲ့ပါသလဲ?
  • Er det vurdert?
  • Czy jest oceniany?
  • Это оценено?
  • A është vlerësuar?
  • Да ли је оцијењен?
  • Na e baloa?
  • Je, ni lilipimwa?
  • ఇది రేట్ చేయబడిందా?
  • Na-rate ba ito?
  • Beğenilen mi?
  • Чи оцінюється?
  • Nó được đánh giá?
  • Ṣe o ṣe ayọkẹlẹ?
  • 是否评分?
»
9 лет назад, скрыть # |
 
Проголосовать: нравится +40 Проголосовать: не нравится

Did anyone got call due to his/her performance in KickStart Round D ???

»
9 лет назад, скрыть # |
Rev. 3  
Проголосовать: нравится 0 Проголосовать: не нравится

Where can we upload our resume on the kicktstart site? I have already registered

»
9 лет назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

All solutions and explanations will update here soon after the contest ends. https://github.com/ckcz123/codejam

Good Luck!

»
9 лет назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

Round link anyone?

»
9 лет назад, скрыть # |
 
Проголосовать: нравится +54 Проголосовать: не нравится

Sadly no one get 100 scores, people who passed C large are all failed in A large.

»
9 лет назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

Can any one tell me how did they did B large?

»
9 лет назад, скрыть # |
Rev. 3  
Проголосовать: нравится +5 Проголосовать: не нравится

Can someone explain their solution for A-large?

I tried a dp solution but failed. Can somebody please point out the error? Let s be the string. State is dp[i] which is the minimum steps required to construct the string s[0..i]. Initialise dp[0] = 1 and dp[1] = 2. For every i in [2, length(s)-1], first do dp[i] = dp[i-1] + 1 which corresponds to the first operation. Or select some j < i and consider the string t = s[j..i]. Check if the string t can be formed by repeatedly concatenating some substring of itself and check whether that substring exists in s[0..j-1]. If it does, then dp[i] = min(dp[i], dp[j-1] + 1 + length(t)/l) where l is the length of repeating string we considered.

My code: Ideone

Thanks!

»
9 лет назад, скрыть # |
 
Проголосовать: нравится +31 Проголосовать: не нравится

What is the approach to solve C Large ???

»
9 лет назад, скрыть # |
 
Проголосовать: нравится +10 Проголосовать: не нравится

Here are some unofficial results after running plagiarism check on all the codes(includes both accepted and unaccepted submissions).
https://drive.google.com/drive/folders/0ByNcq665KLJhMWh6U1MwWEY0djQ

»
9 лет назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

My rank is below 350 and in india below 100.I am in third year can i get chance of intership or not.

»
9 лет назад, скрыть # |
Rev. 2  
Проголосовать: нравится 0 Проголосовать: не нравится

Hello everyone, here is the official analysis:

https://code.google.com/codejam/contest/12234486/dashboard#s=a&a=3